forked from triacontane/RPGMakerMV
-
Notifications
You must be signed in to change notification settings - Fork 2
/
BackUpDatabase.js
230 lines (211 loc) · 8.81 KB
/
BackUpDatabase.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
//=============================================================================
// BackUpDatabase.js
// ----------------------------------------------------------------------------
// (C)2015-2018 Triacontane
// This software is released under the MIT License.
// http://opensource.org/licenses/mit-license.php
// ----------------------------------------------------------------------------
// Version
// 1.1.1 2018/05/13 1.1.0でエラーになる問題を修正
// 1.1.0 2018/05/13 バックアップフォルダを時間単位で作成できる機能を追加
// 1.0.0 2018/04/21 初版
// ----------------------------------------------------------------------------
// [Blog] : https://triacontane.blogspot.jp/
// [Twitter]: https://twitter.com/triacontane/
// [GitHub] : https://github.com/triacontane/
//=============================================================================
/*:
* @plugindesc BackUpDatabasePlugin
* @author triacontane
*
* @param backUpPath
* @desc ファイルの出力パスです。相対パス、絶対パスが利用できます。
* @default /backup
*
* @param includeSave
* @desc セーブデータが含まれているフォルダもバックアップの対象にします。
* @default false
* @type boolean
*
* @param timeUnit
* @desc 有効にすると時間単位でフォルダを作成します。無効にすると日付単位でフォルダを作成します。
* @default false
* @type boolean
*
* @help BackUpDatabase.js
*
* ゲームを起動するたびにデータフォルダ一式を所定の場所にコピーします。
* フォルダは日付ごとに蓄積され、上限はありません。
* このプラグインは通常のテストプレー時のみ効果があります。
* 通常プレー、戦闘テスト、イベントテスト、ブラウザプレーでは何もしません。
*
* なお、プラグインの動作テストは十分に行っていますが、
* 当プラグインは問題発生時のプロジェクトの復元を常に保証するものではありません。
*
* This plugin is released under the MIT License.
*/
/*:ja
* @plugindesc データバックアッププラグイン
* @author トリアコンタン
*
* @param backUpPath
* @text バックアップパス
* @desc ファイルの出力パスです。相対パス、絶対パスが利用できます。
* @default /backup
*
* @param includeSave
* @text セーブデータも含む
* @desc セーブデータが含まれているフォルダもバックアップの対象にします。
* @default false
* @type boolean
*
* @param timeUnit
* @text 時間単位でフォルダ作成
* @desc 有効にすると時間単位でフォルダを作成します。無効にすると日付単位でフォルダを作成します。
* @default false
* @type boolean
*
* @help BackUpDatabase.js
*
* ゲームを起動するたびにデータフォルダ一式を所定の場所にコピーします。
* フォルダは日付ごとに蓄積され、上限はありません。
* このプラグインは通常のテストプレー時のみ効果があります。
* 通常プレー、戦闘テスト、イベントテスト、ブラウザプレーでは何もしません。
*
* なお、プラグインの動作テストは十分に行っていますが、
* 当プラグインは問題発生時のプロジェクトの復元を常に保証するものではありません。
*
* このプラグインにはプラグインコマンドはありません。
*
* 利用規約:
* 作者に無断で改変、再配布が可能で、利用形態(商用、18禁利用等)
* についても制限はありません。
* このプラグインはもうあなたのものです。
*/
(function() {
'use strict';
if (!Utils.isNwjs()) {
return;
}
/**
* Create plugin parameter. param[paramName] ex. param.commandPrefix
* @param pluginName plugin name(EncounterSwitchConditions)
* @returns {Object} Created parameter
*/
var createPluginParameter = function(pluginName) {
var paramReplacer = function(key, value) {
if (value === 'null') {
return value;
}
if (value[0] === '"' && value[value.length - 1] === '"') {
return value;
}
try {
return JSON.parse(value);
} catch (e) {
return value;
}
};
var parameter = JSON.parse(JSON.stringify(PluginManager.parameters(pluginName), paramReplacer));
PluginManager.setParameters(pluginName, parameter);
return parameter;
};
var param = createPluginParameter('BackUpDatabase');
var node = {
fs : require('fs'),
path: require('path')
};
//=============================================================================
// SceneManager
// バックアップ処理を呼び出します。
//=============================================================================
var _SceneManager_initialize = SceneManager.initialize;
SceneManager.initialize = function() {
_SceneManager_initialize.apply(this, arguments);
DataManager.backupAllData();
};
//=============================================================================
// DataManager
// バックアップを実行します。
//=============================================================================
DataManager.backupAllData = function() {
if (!Utils.isOptionValid('test') || this.isBattleTest() || this.isEventTest()) {
return;
}
this.backupDataBase();
this.backupRpgProject();
if (param.includeSave) {
this.backupSaveData();
}
};
DataManager.backupDataBase = function() {
var targetPath = StorageManager.makeBackupDirectory('data');
var originalPath = StorageManager.localDataDirectoryPath();
StorageManager.copyAllFiles(originalPath, targetPath);
};
DataManager.backupRpgProject = function() {
var targetPath = StorageManager.getBackupRoot();
var originalPath = StorageManager.getProjectRoot() + '/';
StorageManager.copyFile(originalPath, targetPath, 'Game.rpgproject');
};
DataManager.backupSaveData = function() {
var targetPath = StorageManager.makeBackupDirectory('save');
var originalPath = StorageManager.localFileDirectoryPath();
StorageManager.copyAllFiles(originalPath, targetPath);
};
//=============================================================================
// StorageManager
// バックアップに必要なファイルアクセス処理を提供します。
//=============================================================================
StorageManager.copyAllFiles = function(originalPath, targetPath) {
var copyFile = this.copyFile.bind(this, originalPath, targetPath);
node.fs.readdir(originalPath, function(error, list) {
if (error || !list) {
console.warn(error);
return;
}
list.forEach(function(fileName) {
copyFile(fileName);
});
});
};
StorageManager.copyFile = function(originalPath, targetPath, fileName) {
node.fs.createReadStream(originalPath + fileName).pipe(node.fs.createWriteStream(targetPath + fileName));
};
StorageManager.getProjectRoot = function() {
return node.path.dirname(process.mainModule.filename);
};
StorageManager.localDataDirectoryPath = function() {
return node.path.join(this.getProjectRoot(), 'data/');
};
StorageManager.getBackupRoot = function() {
var filePath = param.backUpPath;
if (!filePath.match(/^[A-Z]:/)) {
filePath = node.path.join(this.getProjectRoot(), filePath);
}
return filePath.match(/\/$/) ? filePath : filePath + '/';
};
StorageManager.getBackupPath = function(prefix) {
var date = new Date();
return `${prefix}_${date.getFullYear()}-${(date.getMonth() + 1).padZero(2)}-${date.getDate().padZero(2)}${this.getBackupTimePath()}/`;
};
StorageManager.getBackupTimePath = function() {
if (!param.timeUnit) {
return '';
}
var date = new Date();
return `_${date.getHours().padZero(2)}${date.getMinutes().padZero(2)}${date.getSeconds().padZero(2)}`;
};
StorageManager.makeBackupDirectory = function(type) {
var filePath = this.getBackupRoot();
this.makeDirectoryIfNeed(filePath);
filePath += this.getBackupPath(type);
this.makeDirectoryIfNeed(filePath);
return filePath;
};
StorageManager.makeDirectoryIfNeed = function(dirPath) {
if (!node.fs.existsSync(dirPath)) {
node.fs.mkdirSync(dirPath);
}
};
})();