CN105511889B - Universal game version increment updating system and method - Google Patents

Universal game version increment updating system and method Download PDF

Info

Publication number
CN105511889B
CN105511889B CN201610031594.1A CN201610031594A CN105511889B CN 105511889 B CN105511889 B CN 105511889B CN 201610031594 A CN201610031594 A CN 201610031594A CN 105511889 B CN105511889 B CN 105511889B
Authority
CN
China
Prior art keywords
file
updating
version
game
version information
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201610031594.1A
Other languages
Chinese (zh)
Other versions
CN105511889A (en
Inventor
陈镇秋
陈汉辉
李茂�
吴海权
易勇军
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Chengdu Xishanju Interactive Entertainment Technology Co Ltd
Zhuhai Kingsoft Digital Network Technology Co Ltd
Original Assignee
Zhuhai Kingsoft Online Game Technology Co Ltd
Chengdu Xishanju Interactive Entertainment Technology Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Zhuhai Kingsoft Online Game Technology Co Ltd, Chengdu Xishanju Interactive Entertainment Technology Co Ltd filed Critical Zhuhai Kingsoft Online Game Technology Co Ltd
Priority to CN201610031594.1A priority Critical patent/CN105511889B/en
Publication of CN105511889A publication Critical patent/CN105511889A/en
Application granted granted Critical
Publication of CN105511889B publication Critical patent/CN105511889B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/60Software deployment
    • G06F8/65Updates
    • G06F8/658Incremental updates; Differential updates

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Computer Security & Cryptography (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Information Transfer Between Computers (AREA)

Abstract

The technical scheme of the invention comprises a universal game version increment updating system, which comprises: the updating preparation module is used for storing the game version information file and the updating information file; the updating interface module is used for packaging the script into an updating resource file; the version updating module is used for acquiring the updated resource file and executing the replacement and installation of the corresponding resource file; and the code reflection module is used for dynamically loading the program code and dynamically executing and using the program code. The technical scheme of the invention comprises a general game version increment updating method: storing the update information file, generating a configuration file for configuring a corresponding update resource file, and executing corresponding resource file replacement and installation; program code under the game program is dynamically loaded and dynamically executed and used. The invention has the beneficial effects that: the development cycle of the version increment updating system is greatly shortened, the maintainability and reusability of codes are enhanced, and the experience and the performance of games are enhanced.

Description

Universal game version increment updating system and method
Technical Field
The invention relates to a universal game version increment updating system and a universal game version increment updating method, and belongs to the field of computer game updating.
Background
The distribution server is called a content distribution network. The basic idea is to avoid bottlenecks and links possibly influencing data transmission speed and stability on the Internet as far as possible, so that content transmission is faster and more stable. By placing node servers at various places of the network to form a layer of intelligent virtual network on the basis of the existing internet, the distribution server system can redirect the request of the user to the service node closest to the user in real time according to the network flow, the connection of each node, the load condition, the distance to the user, the response time and other comprehensive information. The method aims to enable the user to obtain the required content nearby, solve the problem of congestion of the Internet network and improve the response speed of the user for accessing the website.
MD5, message-digest algorithm 5, is used to ensure that the message is transmitted in a complete and consistent manner. The method has the characteristics that the length of the calculated MD5 value is fixed for data with any length. Easy to calculate: it is easy to calculate the MD5 value from the raw data. Resistance to modification: any change to the original data, even if only 1 byte is modified, can result in a great difference in the value of MD 5. Strong collision resistance: knowing the original data and its MD5 value, it is very difficult to find a data with the same MD5 value (i.e., counterfeit data).
The prior art has the following problems: the game version updating system is often the most important system in the game system, because the loss of a player before entering a game login interface is counted up to more than ten percent according to the relevant data of game retention, the player needs to spend a large amount of time and flow to download the whole game package for installation because the game is not updated with the system, or the player quits the game because the interface is single in appearance after the time is too long in the updating process and the player feels a lot of trouble.
The common scheme adopted by the game is either not to make a version increment updating system or to adopt an MD5 resource comparison updating system.
MD5 resource alignment update system: all resources of the latest version are uploaded to a server side and MD5 files corresponding to the resources are generated, a client side maintains the MD5 file of the current version, a resource list needing to be downloaded is generated by comparing the MD5 file of the client side with the MD5 file of the server side when a game is started, then the resources in the resource list are downloaded and covered in a local persistent path of the client side, and the resources are loaded into the game if the persistent path has the corresponding resources after the game is started. As above, the MD5 file part content, each line uses the MD5 of the resource as the primary key, the picture relative path, MD5 value, whether it is folder identification, the server download address is combined into a list as the value. The defects of adopting the MD5 resource ratio to update the system are as follows 1-4:
1. the client needs to store one MD5 file, generally, commercial game resources are as high as ten thousands, one line is formed, and the MD5 file needs to occupy about 4M space of the installation package size;
2. the game starting needs to download the server list MD5 file and traverse each resource MD5, if the MD5 value does not exist in the client MD5 file, the resource is listed in the list needing to be downloaded, and the process can take about one minute;
3. the game downloads the resource list as required and downloads the corresponding resources one by one, and because the HTTP link request needs to be established when downloading one resource in the process, the process is a critical bottleneck point which consumes huge time, and if the resource needing to be updated reaches hundreds, the process generally needs more than ten minutes;
4. the downloading process is interrupted in the game, and in order to support the function of resuming the game breakpoint next time, the game needs to record which files are updated last time and enter the client, which causes inconvenience and is easy to lose and cause bug.
Disclosure of Invention
Aiming at the problems in the prior art, the technical scheme of the invention provides a universal game version increment updating system and a universal game version increment updating method, which deeply analyze the current situation and the caused reasons of the realization of the common game version updating system, analyze the specific requirements of a user player on game updating, and summarize a set of universal game version increment updating system so as to achieve the purposes of greatly shortening the development period of the version increment updating system, enhancing the maintainability and reusability of codes, and enhancing the experience and performance of games, thereby increasing the retention rate of the games and reducing the unnecessary time and flow loss.
The technical scheme of the invention comprises a universal game version increment updating system, which comprises a publishing terminal, a client terminal and a distribution server, and is characterized in that the system comprises: the updating preparation module is used for creating an updating version list, storing the game version information file and the updating information file into the version list, and decomposing the game resource program set into byte streams and converting the byte streams into script codes; the updating interface module is used for packaging the script converted by the updating preparation module into an updating resource file, generating a configuration file for configuring the corresponding updating resource file, creating an interactive interface for custom setting the updating resource file to be issued, and uploading the required updating resource file to the distribution server; the version updating module is used for acquiring the updated resource file of the distribution server, analyzing and acquiring the version information of the updated resource, and executing corresponding resource file replacement and installation according to the version information; and the code reflection module is used for dynamically loading and dynamically executing and using the program code under the game program after the version updating module is replaced and installed.
The incremental update system for game versions, wherein the update preparation module comprises: the updating directory submodule is used for creating an updating version information directory list and storing different version information files, wherein the updating version information directory list comprises an updating information file, an incremental updating information file and a historical updating file; the updating naming submodule is used for creating a naming rule for the version information file of the updating directory submodule and comprises the steps of marking the updating file of the version information increment by using sequentially increasing digital identification codes; and the resource integration submodule is used for integrating the updated resource file which needs to be issued, and comprises the steps of decomposing video, audio, pictures and game program codes required by the game into byte streams, converting the byte streams into script codes and putting the script codes into the corresponding version information file.
The incremental updating system of the game version comprises an updating interface module and a game version updating module, wherein the updating interface module comprises: the interactive interface submodule is used for carrying out self-defined selection on the version information file called by the updated resource file to be released by using an interactive interface, providing compiling script mode selection, platform releasing mode selection and updated resource file packaging mode selection, and uploading the finally packaged game updated file to a distribution server; the background configuration submodule is used for configuring according to the updating resource file which is selected by the interactive interface submodule in a user-defined way, and comprises a configuration file for creating an updating file, a new version information file and an increment updating version information file; and the background packaging submodule is used for packaging the updated resource file which is configured by the background configuration submodule into a release file.
The game version increment updating system comprises a version updating module and a version updating module, wherein the version updating module comprises: the updating comparison submodule is used for downloading the corresponding updating resource file from the distribution server, analyzing the updating resource file to obtain an updating version information file and a corresponding updating configuration file, preprocessing the version information file and the updating version information file under the client and performing comparison; and the updating submodule is used for acquiring the comparison result of the updating comparison submodule to correspondingly replace and install the file calling updating resource file under the client.
The incremental updating system of the game version, wherein the code reflection module further comprises: the method is used for performing reflective loading on the replaced and installed updated resource, and comprises the steps of dynamically and reflectively loading game codes, and interpreting and executing the game program codes under the updated resource by using script codes.
The technical scheme of the invention also comprises a universal game version increment updating method, which is characterized by comprising the following steps: creating an update version list, storing the game version information file and the update information file into the version list, and decomposing the game resource program set into byte streams and converting the byte streams into script codes; the script converted by the updating preparation module is packaged into an updating resource file, a configuration file is generated for configuring the corresponding updating resource file, an interactive interface is created for custom setting the updating resource file to be issued, and the required updating resource file is uploaded to a distribution server; acquiring an updated resource file of the distribution server, analyzing and acquiring updated resource version information, and executing corresponding resource file replacement and installation according to the version information; and after the version updating module is replaced and installed, dynamically loading the program code under the game program and dynamically executing and using the program code.
Further, the method also includes: creating an updated version information directory list for storing different version information files, including an updated information file, an incremental updated information file and a historical updated file; creating a naming rule for the version information file of the update directory submodule, wherein the naming rule comprises the step of marking the update file of the version information increment by using sequentially increasing digital identification codes; integrating the updated resource files to be released, including decomposing the video, audio, picture and game program codes required by the game into byte streams, converting the byte streams into script codes and putting the script codes into corresponding version information files.
Further, the method also includes: the interactive interface is used for carrying out user-defined selection on the version information file of the updated resource file to be released, providing compiling script mode selection, platform releasing mode selection and updated resource file packaging mode selection, and uploading the finally packaged game updating file to the distribution server; configuring according to the updating resource file selected by the interactive interface submodule in a user-defined way, wherein the configuration file comprises a configuration file for creating an updating file, a new version information file and an increment updating version information file; and packaging the configured updated resource file of the background configuration submodule into a release file.
Further, the method also includes: downloading a corresponding updated resource file from the distribution server, analyzing the updated resource file to obtain an updated version information file and a corresponding updated configuration file, preprocessing the version information file and the updated version information file under the client and performing comparison; and obtaining the comparison result of the update comparison submodule to correspondingly replace and install the file calling update resource file under the client.
Further, the method also includes: the method is used for performing reflective loading on the replaced and installed updated resource, and comprises the steps of dynamically and reflectively loading game codes, and interpreting and executing the game program codes under the updated resource by using script codes.
The invention has the beneficial effects that: (1) the visual resource packaging and publishing interface is operated in a one-key mode, the interface is easy to operate and provides an information viewing window, direct packaging and publishing can be conveniently planned, and the development period of a version increment updating system is greatly shortened. (2) The version increment updating system can be conveniently transplanted to different game items, other functions can be conveniently expanded, and the maintainability and reusability of codes are enhanced. (3) Enhancing the experience and performance of the game to increase the game survival rate and reduce wasted time and traffic loss.
Drawings
FIG. 1 is a general block diagram according to an embodiment of the present invention;
fig. 2 shows a flow diagram according to an embodiment of the invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the present invention more apparent, the present invention will be described in detail with reference to the accompanying drawings and specific embodiments. The invention relates to a universal game version increment updating system and method for updating games such as mobile phone games, web games and the like.
Fig. 1 is a general block diagram according to an embodiment of the present invention, which generally includes a distribution end, a client, and a distribution server. The updating preparation module is used for creating an updating version list, storing the game version information file and the updating information file into the version list, decomposing a game resource program set into byte streams and converting the byte streams into script codes; the updating interface module is used for packaging the script converted by the updating preparation module into an updating resource file, generating a configuration file for configuring the corresponding updating resource file, creating an interactive interface for custom setting the updating resource file to be issued, and uploading the required updating resource file to the distribution server; the version updating module is used for acquiring the updated resource file of the distribution server, analyzing and acquiring the version information of the updated resource, and executing corresponding resource file replacement and installation according to the version information; and the code reflection module is used for dynamically loading and dynamically executing and using the program code under the game program after the version updating module is replaced and installed.
Fig. 2 shows operation steps in the resource packaging and publishing management process of the flowchart according to the embodiment of the present invention, a visual resource packaging and publishing interface is compiled, all the steps can be completed by clicking to publish immediately, the resource is uploaded to the corresponding distribution server, and then the required resource is updated according to the incremental updating system execution process. The core idea of the system is to directly download the compressed delta patch package of which the current version needs to be updated through version number comparison, and decompress the compressed delta patch package to a persistent path for preferential calling. According to the flowchart shown in fig. 2, the version information file records the installation package version number and the resource version number. The persistent path is a path in which the mobile terminal can perform read-write storage, so that resources on the network or in the installation package can be stored under the path for heat demand. The specific execution steps further comprise the following steps 1-6:
1. and downloading the version information file on the distribution server, and loading the version information file in the installation package and under the persistent path.
2. The method comprises the steps that when a game is entered, the resource version number of a current installation package and the resource version number of a persistent path are compared, and if the resource version number of the installation package is large, the version updating resources of the installation package are completely covered by the resources of the persistent path;
3. then comparing the persistent path with the version number of the installation package on the distribution server, if the version number of the persistent path installation package is large, the installation package does not need to be updated, otherwise, the installation package is downloaded and the game installation is quitted;
4. secondly, comparing the resource version numbers on the persistent path and the distribution server, if the resource version number of the persistent path is large, the resources do not need to be updated, otherwise, downloading the corresponding incremental patch package, decompressing to the persistent path and covering the old resources;
5. the installation package or the incremental patch package is downloaded by adopting a network request, the breakpoint resume function is supported, and the original progress downloading can be continued when the downloading is interrupted and the game is entered next time;
6. after the patch package is completely downloaded and covered, for game resources, the game preferentially reads the resources in the persistent path, and if the resources in the installation package are not read any more, the game can read the resources in the persistent path; for game codes, a program set DLL needs to be loaded into a game for dynamic loading (on an android) and used, and because an ios system does not allow the code to be loaded in a reflection mode, game logic can be developed by using the lua language and used as resource update, and then the game code is loaded into the game to be directly interpreted and executed.
The above description is only a preferred embodiment of the present invention, and the present invention is not limited to the above embodiment, and the present invention shall fall within the protection scope of the present invention as long as the technical effects of the present invention are achieved by the same means. The invention is capable of other modifications and variations in its technical solution and/or its implementation, within the scope of protection of the invention.

Claims (6)

1. A universal game version increment updating system comprises a publishing terminal, a client terminal and a distribution server, and is characterized in that the system comprises:
the update preparation module is used for creating an update version list, storing the game version information file into the version list, decomposing a game resource program set into byte streams and converting the byte streams into script codes, and specifically comprises: the updating directory submodule is used for creating an updating version list and storing different version information files, wherein the version information files comprise updating information files, incremental updating information files and historical updating files; the updating naming submodule is used for creating a naming rule for the version information file of the updating directory submodule and comprises the steps of marking the updating file of the version information increment by using sequentially increasing digital identification codes; the resource integration submodule is used for integrating the updated resource file to be issued, and comprises the steps of decomposing video, audio, pictures and game program codes required by the game into byte streams, converting the byte streams into script codes and putting the script codes into the corresponding version information file;
the updating interface module is used for packaging the script converted by the updating preparation module into an updating resource file, generating a configuration file for configuring the corresponding updating resource file, creating an interactive interface for custom setting the updating resource file to be issued, and uploading the required updating resource file to the distribution server; the update interface module specifically includes: the interactive interface submodule is used for carrying out user-defined selection on the version information file of the updated resource file to be released by using an interactive interface, providing compiling script mode selection, platform releasing mode selection and updated resource file packaging mode selection, and uploading the finally packaged updated resource file to a distribution server; the background configuration submodule is used for configuring according to the updated resource file which is selected by the interactive interface submodule in a user-defined way, and comprises a configuration file for creating the updated resource file, a new version information file and an incremental updated version information file; the background packaging submodule is used for packaging the updated resource file which is configured by the background configuration submodule into a release file;
the version updating module is used for acquiring the updated resource file of the distribution server, analyzing and acquiring the version information of the updated resource, and executing corresponding resource file replacement and installation according to the version information;
and the code reflection module is used for dynamically loading, executing and using the program code under the game program after the resource file is replaced and installed.
2. The game version incremental update system of claim 1, wherein the version update module comprises:
the updating comparison submodule is used for downloading the corresponding updating resource file from the distribution server, analyzing the updating resource file to obtain an updating version information file and a corresponding updating configuration file, preprocessing the version information file and the updating version information file under the client and performing comparison;
and the updating submodule is used for acquiring the comparison result of the updating comparison submodule to correspondingly replace and install the file calling updating resource file under the client.
3. The game version incremental update system of claim 1, wherein the code reflection module further comprises:
the method is used for performing reflective loading on the replaced and installed updated resource, and comprises the steps of dynamically and reflectively loading game codes, and interpreting and executing the game program codes under the updated resource by using script codes.
4. A universal game version incremental update method, the method comprising:
creating an updated version list, storing the game version information file into the version list, decomposing a game resource program set into byte streams and converting the byte streams into script codes, wherein the steps specifically comprise: creating an updating version list for storing different version information files, wherein the version information files comprise an updating information file, an incremental updating information file and a historical updating file; creating a naming rule for the version information file, wherein the naming rule comprises the step of marking the update file of the version information increment by using sequentially increasing digital identification codes; integrating updated resource files to be released, wherein the steps of decomposing video, audio, pictures and game program codes required by a game into byte streams, converting the byte streams into script codes and putting the script codes into corresponding version information files;
encapsulating the converted script into an updated resource file, generating a configuration file for configuring the corresponding updated resource file, creating an interactive interface for custom setting the updated resource file to be issued, and uploading the required updated resource file to a distribution server, wherein the steps specifically comprise: the method comprises the steps that self-defined selection is carried out on an updated resource file calling version information file to be published through an interactive interface, compiling script mode selection, platform publishing mode selection and updated resource file packaging mode selection are provided, and a finally packaged updated resource file is uploaded to a distribution server; configuring the updating resource file selected by the user, wherein the configuration file comprises a configuration file for creating the updating resource file, a new version information file and an incremental updating version information file; packaging the configured updated resource file into a release file;
acquiring an updated resource file of the distribution server, analyzing and acquiring updated resource version information, and executing corresponding resource file replacement and installation according to the version information;
and after the resource file is replaced and installed, dynamically loading the program code under the game program and dynamically executing and using the program code.
5. The universal game version incremental update method of claim 4, further comprising:
downloading a corresponding updated resource file from the distribution server, analyzing the updated resource file to obtain an updated version information file and a corresponding updated configuration file, preprocessing the version information file and the updated version information file under the client and performing comparison;
and obtaining the comparison result to correspondingly replace and install the file transfer update resource file under the client.
6. The universal game version incremental update method of claim 4, further comprising:
the method is used for performing reflective loading on the replaced and installed updated resource, and comprises the steps of dynamically and reflectively loading game codes, and interpreting and executing the game program codes under the updated resource by using script codes.
CN201610031594.1A 2016-01-15 2016-01-15 Universal game version increment updating system and method Active CN105511889B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201610031594.1A CN105511889B (en) 2016-01-15 2016-01-15 Universal game version increment updating system and method

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201610031594.1A CN105511889B (en) 2016-01-15 2016-01-15 Universal game version increment updating system and method

Publications (2)

Publication Number Publication Date
CN105511889A CN105511889A (en) 2016-04-20
CN105511889B true CN105511889B (en) 2020-01-07

Family

ID=55719899

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201610031594.1A Active CN105511889B (en) 2016-01-15 2016-01-15 Universal game version increment updating system and method

Country Status (1)

Country Link
CN (1) CN105511889B (en)

Families Citing this family (36)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107678789A (en) * 2016-07-27 2018-02-09 平安科技(深圳)有限公司 The update method and device at UI interfaces
CN106528229B (en) * 2016-11-03 2019-07-30 北京像素软件科技股份有限公司 A kind of hot update method of game and device
CN106776012B (en) * 2016-11-28 2020-06-23 武汉秀宝软件有限公司 Virtual resource management method and system
CN108519874B (en) * 2017-02-27 2022-03-29 腾讯科技(深圳)有限公司 Python project package generation method and device
CN107169000B (en) * 2017-03-31 2018-08-10 武汉斗鱼网络科技有限公司 Static resource dissemination method and device
CN108334360A (en) * 2017-07-12 2018-07-27 深圳市小牛在线互联网信息咨询有限公司 Method, apparatus, storage medium and the computer equipment of application program dynamic load
CN108449415A (en) * 2018-03-27 2018-08-24 深圳中兴网信科技有限公司 Method of data synchronization, data synchronization unit, computer equipment and storage medium
CN109248440B (en) * 2018-07-20 2019-10-29 苏州玩友时代科技股份有限公司 A kind of method and system for realizing the real-time dynamically load configuration of game
CN109284124A (en) * 2018-08-01 2019-01-29 北京奇虎科技有限公司 A kind of Software package method and apparatus
CN109165198A (en) * 2018-09-09 2019-01-08 江西金格科技股份有限公司 A kind of increment amending method based on OFD document
CN109408104B (en) * 2018-09-18 2021-11-30 天津龙拳风暴科技有限公司 Method and device for acquiring game integration information
CN109450977B (en) * 2018-10-09 2021-12-14 创新先进技术有限公司 Cache data pushing and updating method and device
CN109445832A (en) * 2018-10-09 2019-03-08 深圳点猫科技有限公司 Language carries out the method and electronic equipment of hot update to application program based on programming
CN109800005B (en) * 2018-12-06 2022-04-05 广州西山居世游网络科技有限公司 Client hot update method and device
CN109656611A (en) * 2018-12-24 2019-04-19 成都四方伟业软件股份有限公司 Three-dimensional visualization applies hot update method, device and terminal
CN110035108B (en) * 2018-12-26 2022-01-28 创新先进技术有限公司 Information pushing method and system
CN110058873B (en) * 2019-03-12 2021-09-17 天津五八到家科技有限公司 Application page updating method, device, equipment and storage medium
CN110059276A (en) * 2019-03-12 2019-07-26 天津五八到家科技有限公司 Method for updating pages, device, equipment and storage medium
CN109999489A (en) * 2019-03-29 2019-07-12 北京金山安全软件有限公司 Resource updating method and device and electronic equipment
CN109889608B (en) * 2019-03-29 2021-12-10 北京金山安全软件有限公司 Dynamic resource loading method and device, electronic equipment and storage medium
CN109992284A (en) * 2019-03-29 2019-07-09 北京金山安全软件有限公司 Method and device for providing hot update program and electronic equipment
CN111026416A (en) * 2019-09-17 2020-04-17 拉扎斯网络科技(上海)有限公司 Data updating method, system, device, electronic equipment and computer storage medium
CN110647348B (en) * 2019-09-20 2022-11-22 浪潮思科网络科技有限公司 Method and system for solving problem of difficult code maintenance caused by version differentiation
CN110841280A (en) * 2019-11-06 2020-02-28 福建天晴在线互动科技有限公司 Method for online dynamic loading and checking of resources of micro-terminal
CN110960855B (en) * 2019-12-19 2023-07-11 米哈游科技(上海)有限公司 Communication protocol code updating method and device, electronic equipment and storage medium
CN113076128B (en) * 2020-01-03 2023-11-10 北京猎户星空科技有限公司 Method, device, electronic equipment and storage medium for robot configuration
CN111367558B (en) * 2020-02-25 2023-11-17 网易(杭州)网络有限公司 Data updating method and device for application program
CN113495737B (en) * 2020-04-01 2024-05-03 腾讯科技(深圳)有限公司 Software updating method and related equipment
CN111782263B (en) * 2020-07-22 2024-01-23 网易(杭州)网络有限公司 Game packaging processing method and device
CN112052036A (en) * 2020-09-07 2020-12-08 网易(杭州)网络有限公司 Application program management method and device, storage medium and computer equipment
CN112231010B (en) * 2020-09-28 2023-06-06 四川新网银行股份有限公司 Method for managing and dynamically updating application configuration information based on OSGI (open service gateway initiative) specification
CN112256316A (en) * 2020-11-13 2021-01-22 北京玩蟹科技有限公司 Client application updating method and client
CN112473132B (en) * 2020-12-16 2022-08-26 完美世界(北京)软件科技发展有限公司 Game resource management and loading method, equipment and storage medium
CN112835614B (en) * 2021-01-29 2022-08-09 宝宝巴士股份有限公司 Method for optimizing generation of curriculum packets
CN113509734A (en) * 2021-03-30 2021-10-19 成都完美天智游科技有限公司 Game file processing system
CN115309434A (en) * 2022-10-12 2022-11-08 北京蔚领时代科技有限公司 Cloud game service end batch updating system

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102053853A (en) * 2010-12-30 2011-05-11 北京像素软件科技股份有限公司 Version updating method of online game
CN103973475A (en) * 2013-02-05 2014-08-06 腾讯科技(深圳)有限公司 Difference service pack generating method, difference service pack downloading method, server and client-side
CN104539696A (en) * 2014-12-26 2015-04-22 北京像素软件科技股份有限公司 Client end incremental updating method and system

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN100396132C (en) * 2005-12-16 2008-06-18 北京金山软件有限公司 Method for realizing programme update of wireless terminal
CN102546246A (en) * 2011-12-28 2012-07-04 创新科存储技术(深圳)有限公司 Method and system for automatic upgrade of software
CN103136027B (en) * 2013-03-01 2016-08-24 畅捷通信息技术股份有限公司 Immediate updating device and immediate updating method
CN103401933B (en) * 2013-08-05 2016-12-28 天闻数媒科技(湖南)有限公司 The method and system that a kind of resource information and corresponding resource file batch are uploaded
CN104793970A (en) * 2015-04-02 2015-07-22 安徽四创电子股份有限公司 Online upgrade method based on FTP

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102053853A (en) * 2010-12-30 2011-05-11 北京像素软件科技股份有限公司 Version updating method of online game
CN103973475A (en) * 2013-02-05 2014-08-06 腾讯科技(深圳)有限公司 Difference service pack generating method, difference service pack downloading method, server and client-side
CN104539696A (en) * 2014-12-26 2015-04-22 北京像素软件科技股份有限公司 Client end incremental updating method and system

Also Published As

Publication number Publication date
CN105511889A (en) 2016-04-20

Similar Documents

Publication Publication Date Title
CN105511889B (en) Universal game version increment updating system and method
CN102523268B (en) Client side upgrading method and system
CN108279932B (en) Method and device for dynamically configuring user interface of mobile terminal
US10713034B2 (en) Updating web resources
CN106598673B (en) Application program upgrading method and system
CN109814884A (en) A kind of method and system carrying out resource management according to game resource type
KR20080065295A (en) Method of managing fonts in multimedia scenes and corresponding computer program and terminal
CN111045715A (en) Hot updating method and system of cloud game and readable storage medium
CN103176809B (en) Application upgrade method and system
CN109391673A (en) A kind of method, system and the terminal device of management update file
WO2011076146A1 (en) Method for downloading application data, digital television reception terminal and system
CN109800005B (en) Client hot update method and device
CN107465709A (en) Distributed mirror image structure multitask method and device, system
KR20050094372A (en) System and method for servicing multimedia contents and recording medium thereof
CN113641581A (en) Mixed-mode mobile application debugging method and system
CN107547591A (en) Upgrade server, set top box, set top box upgrading file delivery method and system
US11392663B2 (en) Response based on browser engine
CN111679850B (en) Application program hot update processing method, device and system
CN110855562A (en) Internet of things data distribution management method and system, storage medium and management terminal
KR100524588B1 (en) succeeding method of data in mobile
CN114338395A (en) C/S communication network management method, storage medium, electronic equipment and system
CN113542217A (en) Service subscription system
CN113641580A (en) Mixed-mode mobile application debugging method and system
CN113034165A (en) Data processing method and device, storage medium and electronic device
CN105610908B (en) A kind of samba service implementing method and system based on Android device

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant
CP03 Change of name, title or address
CP03 Change of name, title or address

Address after: 519000 Room 102, 202, 302 and 402, No. 325, Qiandao Ring Road, Tangjiawan Town, high tech Zone, Zhuhai City, Guangdong Province, Room 102 and 202, No. 327 and Room 302, No. 329

Patentee after: Zhuhai Jinshan Digital Network Technology Co.,Ltd.

Patentee after: CHENGDU XISHANJU INTERACTIVE ENTERTAINMENT TECHNOLOGY Co.,Ltd.

Address before: 519000 Jinshan software building, 8 Lanshan lane, Jida Jingshan Hill Road, Zhuhai, Guangdong

Patentee before: ZHUHAI KINGSOFT ONLINE GAME TECHNOLOGY Co.,Ltd.

Patentee before: CHENGDU XISHANJU INTERACTIVE ENTERTAINMENT TECHNOLOGY Co.,Ltd.