koishi-plugin-aktmp 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/lib/api/evmOpenApi.d.ts +45 -0
  2. package/lib/api/evmOpenApi.js +158 -0
  3. package/lib/api/truckersMpApi.d.ts +34 -0
  4. package/lib/api/truckersMpApi.js +110 -0
  5. package/lib/api/truckersMpMapApi.d.ts +6 -0
  6. package/lib/api/truckersMpMapApi.js +25 -0
  7. package/lib/api/truckyAppApi.d.ts +12 -0
  8. package/lib/api/truckyAppApi.js +32 -0
  9. package/lib/command/tmpBind.d.ts +2 -0
  10. package/lib/command/tmpBind.js +19 -0
  11. package/lib/command/tmpDlcMap.d.ts +3 -0
  12. package/lib/command/tmpDlcMap.js +33 -0
  13. package/lib/command/tmpFootprint.d.ts +3 -0
  14. package/lib/command/tmpFootprint.js +82 -0
  15. package/lib/command/tmpMileageRanking.d.ts +3 -0
  16. package/lib/command/tmpMileageRanking.js +55 -0
  17. package/lib/command/tmpPosition.d.ts +3 -0
  18. package/lib/command/tmpPosition.js +95 -0
  19. package/lib/command/tmpQuery.d.ts +2 -0
  20. package/lib/command/tmpQuery.js +148 -0
  21. package/lib/command/tmpServer/tmpServer.d.ts +2 -0
  22. package/lib/command/tmpServer/tmpServer.js +15 -0
  23. package/lib/command/tmpServer/tmpServerImg.d.ts +3 -0
  24. package/lib/command/tmpServer/tmpServerImg.js +35 -0
  25. package/lib/command/tmpServer/tmpServerText.d.ts +2 -0
  26. package/lib/command/tmpServer/tmpServerText.js +40 -0
  27. package/lib/command/tmpTraffic/tmpTraffic.d.ts +2 -0
  28. package/lib/command/tmpTraffic/tmpTraffic.js +15 -0
  29. package/lib/command/tmpTraffic/tmpTrafficMap.d.ts +3 -0
  30. package/lib/command/tmpTraffic/tmpTrafficMap.js +119 -0
  31. package/lib/command/tmpTraffic/tmpTrafficText.d.ts +2 -0
  32. package/lib/command/tmpTraffic/tmpTrafficText.js +122 -0
  33. package/lib/command/tmpUnbind.js +17 -0
  34. package/lib/command/tmpVersion.d.ts +2 -0
  35. package/lib/command/tmpVersion.js +31 -0
  36. package/lib/database/guildBind.d.ts +22 -0
  37. package/lib/database/guildBind.js +55 -0
  38. package/lib/database/model.d.ts +2 -0
  39. package/lib/database/model.js +65 -0
  40. package/lib/database/translateCache.d.ts +14 -0
  41. package/lib/database/translateCache.js +31 -0
  42. package/lib/index.d.ts +14 -0
  43. package/lib/index.js +59 -0
  44. package/lib/resource/dlc.html +115 -0
  45. package/lib/resource/footprint.html +241 -0
  46. package/lib/resource/mileage-leaderboard.html +363 -0
  47. package/lib/resource/package/SEGUIEMJ.TTF +0 -0
  48. package/lib/resource/package/ets-map.js +63 -0
  49. package/lib/resource/package/leaflet/heatmap.min.js +9 -0
  50. package/lib/resource/package/leaflet/leaflet-heatmap.js +246 -0
  51. package/lib/resource/package/leaflet/leaflet.min.css +1 -0
  52. package/lib/resource/package/leaflet/leaflet.min.js +1 -0
  53. package/lib/resource/position.html +229 -0
  54. package/lib/resource/server-list.html +309 -0
  55. package/lib/resource/traffic.html +207 -0
  56. package/lib/util/baiduTranslate.d.ts +2 -0
  57. package/lib/util/baiduTranslate.js +30 -0
  58. package/lib/util/common.d.ts +1 -0
  59. package/lib/util/common.js +5 -0
  60. package/lib/util/constant.d.ts +19 -0
  61. package/lib/util/constant.js +36 -0
  62. package/package.json +48 -0
  63. package/readme.md +86 -0
@@ -0,0 +1,363 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Mileage Leaderboard</title>
6
+ <style>
7
+ @font-face {
8
+ font-family: 'segui-emj';
9
+ src: url('./package/SEGUIEMJ.TTF');
10
+ font-weight: normal;
11
+ font-style: normal;
12
+ }
13
+ body {
14
+ font-family: 'segui-emj', sans-serif;
15
+ margin: 0;
16
+ padding: 0;
17
+ background-color: #000;
18
+ }
19
+
20
+ #container {
21
+ width: 340px;
22
+ background: linear-gradient(135deg, #1f2f54, #0f2c2a);
23
+ overflow: hidden;
24
+ padding-bottom: 12px;
25
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
26
+ }
27
+
28
+ .header {
29
+ height: 45px;
30
+ background-color: rgba(0, 0, 0, .1);
31
+ display: flex;
32
+ align-items: center;
33
+ justify-content: center;
34
+ padding: 0 20px;
35
+ box-shadow: 0 0 16px rgba(0, 0, 0, .4);
36
+ }
37
+
38
+ .header .title {
39
+ color: #b0c7ff;
40
+ font-size: 16px;
41
+ font-weight: 600;
42
+ text-align: center;
43
+ }
44
+
45
+ .leaderboard-container {
46
+ padding: 12px 16px 0 16px;
47
+ }
48
+
49
+ .leaderboard-item {
50
+ background-color: rgba(0, 0, 0, 0.25);
51
+ margin-bottom: 4px;
52
+ border-radius: 6px;
53
+ overflow: hidden;
54
+ border: 1px solid rgba(255, 255, 255, 0.1);
55
+ }
56
+
57
+ .leaderboard-item.top3 {
58
+ background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
59
+ border-color: rgba(255, 215, 0, 0.3);
60
+ box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
61
+ }
62
+
63
+ .leaderboard-item.current-player {
64
+ background: linear-gradient(135deg, rgba(92, 227, 92, 0.3), rgba(92, 227, 92, 0.15));
65
+ border: 1px solid rgba(92, 227, 92, 0.6);
66
+ box-shadow: 0 2px 10px rgba(92, 227, 92, 0.3);
67
+ }
68
+
69
+ .item-content {
70
+ display: flex;
71
+ align-items: center;
72
+ padding: 8px 14px;
73
+ }
74
+
75
+ .rank {
76
+ width: 32px;
77
+ color: #ffffff;
78
+ font-size: 15px;
79
+ font-weight: bold;
80
+ text-align: center;
81
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
82
+ }
83
+
84
+ .current-player .rank {
85
+ min-width: 48px;
86
+ flex-shrink: 0;
87
+ }
88
+
89
+ .rank.top1 {
90
+ color: #ffd700;
91
+ text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
92
+ }
93
+
94
+ .rank.top2 {
95
+ color: #c0c0c0;
96
+ text-shadow: 0 0 6px rgba(192, 192, 192, 0.5);
97
+ }
98
+
99
+ .rank.top3 {
100
+ color: #cd7f32;
101
+ text-shadow: 0 0 6px rgba(205, 127, 50, 0.5);
102
+ }
103
+
104
+ .player-info {
105
+ flex: 1;
106
+ padding: 0 10px;
107
+ min-width: 0;
108
+ }
109
+
110
+ .player-name {
111
+ color: #ffffff;
112
+ font-size: 13px;
113
+ font-weight: 600;
114
+ white-space: nowrap;
115
+ overflow: hidden;
116
+ text-overflow: ellipsis;
117
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
118
+ max-width: 160px;
119
+ }
120
+
121
+ .current-player .player-name {
122
+ max-width: 144px;
123
+ }
124
+
125
+
126
+ .mileage-value {
127
+ color: #ffffff;
128
+ font-size: 13px;
129
+ font-weight: 700;
130
+ text-align: right;
131
+ white-space: nowrap;
132
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
133
+ min-width: 65px;
134
+ }
135
+
136
+ .divider {
137
+ height: 1px;
138
+ background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
139
+ margin: 12px 16px;
140
+ }
141
+
142
+ .current-player-container {
143
+ padding: 0 16px;
144
+ }
145
+
146
+ .current-player-title {
147
+ color: #aaaaaa;
148
+ font-size: 12px;
149
+ text-align: center;
150
+ margin-bottom: 8px;
151
+ }
152
+
153
+ .footer-note {
154
+ color: #666666;
155
+ font-size: 10px;
156
+ text-align: center;
157
+ margin-top: 12px;
158
+ padding: 0 16px;
159
+ opacity: 0.8;
160
+ }
161
+ </style>
162
+ </head>
163
+ <body>
164
+ <div id="container">
165
+ <div class="header">
166
+ <div class="title">🚗 行驶里程排行榜</div>
167
+ </div>
168
+
169
+ <div class="leaderboard-container">
170
+ <!-- 排行榜前10名 -->
171
+ <div id="top-rankings"></div>
172
+ </div>
173
+
174
+ <div class="divider"></div>
175
+
176
+ <div class="current-player-container">
177
+ <div class="current-player-title">你的排名</div>
178
+ <div id="current-player"></div>
179
+ </div>
180
+
181
+ <div class="footer-note" id="footer-note">
182
+ * 数据统计说明
183
+ </div>
184
+ </div>
185
+
186
+ <script>
187
+ function createLeaderboardItem(rank, playerName, mileage, isCurrentPlayer = false, isTop3 = false) {
188
+ const item = document.createElement('div');
189
+ item.className = `leaderboard-item${isTop3 ? ' top3' : ''}${isCurrentPlayer ? ' current-player' : ''}`;
190
+
191
+ let rankClass = '';
192
+ if (rank === 1) rankClass = 'top1';
193
+ else if (rank === 2) rankClass = 'top2';
194
+ else if (rank === 3) rankClass = 'top3';
195
+
196
+ item.innerHTML = `
197
+ <div class="item-content">
198
+ <div class="rank ${rankClass}">#${rank}</div>
199
+ <div class="player-info">
200
+ <div class="player-name">${playerName}</div>
201
+ </div>
202
+ <div class="mileage-value">${formatMileage(mileage)}</div>
203
+ </div>
204
+ `;
205
+
206
+ return item;
207
+ }
208
+
209
+ function formatMileage(mileage) {
210
+ const meters = parseInt(mileage);
211
+ if (isNaN(meters) || meters < 0) return '0 km';
212
+
213
+ const km = meters / 1000;
214
+
215
+ if (km >= 1000000) {
216
+ const value = (km / 1000000).toFixed(2);
217
+ return value.endsWith('.00') ? Math.floor(km / 1000000) + 'M km' : value + 'M km';
218
+ } else if (km >= 1000) {
219
+ const value = (km / 1000).toFixed(2);
220
+ return value.endsWith('.00') ? Math.floor(km / 1000) + 'K km' : value + 'K km';
221
+ } else if (km >= 1) {
222
+ return Math.floor(km).toLocaleString() + ' km';
223
+ } else {
224
+ return meters.toLocaleString() + ' m';
225
+ }
226
+ }
227
+
228
+ // 新增:处理来自后端的动态数据
229
+ function setData(apiData) {
230
+ if (!apiData) {
231
+ console.error('数据无效');
232
+ return;
233
+ }
234
+
235
+ // 设置标题和底部脚注
236
+ const titleElement = document.querySelector('.header .title');
237
+ const footerElement = document.getElementById('footer-note');
238
+
239
+ if (titleElement) {
240
+ const titles = {
241
+ 1: '- 总行驶里程排行榜 -',
242
+ 2: '- 今日行驶里程排行榜 -'
243
+ };
244
+ const footerNotes = {
245
+ 1: '* 数据自 2025年8月23日 20:00 开始统计',
246
+ 2: '* 每日 0:00 重置统计'
247
+ };
248
+
249
+ titleElement.textContent = titles[apiData.rankingType] || '🚗 行驶里程排行榜';
250
+ if (footerElement) {
251
+ footerElement.textContent = footerNotes[apiData.rankingType] || '* 数据统计说明';
252
+ }
253
+ }
254
+
255
+ const topRankings = document.getElementById('top-rankings');
256
+ const currentPlayerContainer = document.getElementById('current-player');
257
+
258
+ // 清空现有内容
259
+ topRankings.innerHTML = '';
260
+ currentPlayerContainer.innerHTML = '';
261
+
262
+ // 渲染前10名排行榜
263
+ if (apiData.mileageRankingList && Array.isArray(apiData.mileageRankingList)) {
264
+ apiData.mileageRankingList.slice(0, 10).forEach((player) => {
265
+ if (player && player.tmpName && typeof player.distance !== 'undefined' && typeof player.ranking !== 'undefined') {
266
+ const isTop3 = player.ranking <= 3;
267
+ const item = createLeaderboardItem(player.ranking, player.tmpName, player.distance, false, isTop3);
268
+ topRankings.appendChild(item);
269
+ }
270
+ });
271
+ }
272
+
273
+ // 渲染当前玩家排名
274
+ if (apiData.playerMileageRanking && apiData.playerMileageRanking.tmpName && typeof apiData.playerMileageRanking.ranking !== 'undefined') {
275
+ const currentItem = createLeaderboardItem(
276
+ apiData.playerMileageRanking.ranking,
277
+ apiData.playerMileageRanking.tmpName,
278
+ apiData.playerMileageRanking.distance,
279
+ true,
280
+ false
281
+ );
282
+ currentPlayerContainer.appendChild(currentItem);
283
+ } else {
284
+ // 如果没有当前玩家数据,隐藏该部分
285
+ const divider = document.querySelector('.divider');
286
+ const currentPlayerSection = document.querySelector('.current-player-container');
287
+ if (divider) divider.style.display = 'none';
288
+ if (currentPlayerSection) currentPlayerSection.style.display = 'none';
289
+ }
290
+ }
291
+
292
+ function init(data) {
293
+ if (!data) {
294
+ console.error('数据无效');
295
+ return;
296
+ }
297
+
298
+ const topRankings = document.getElementById('top-rankings');
299
+ const currentPlayerContainer = document.getElementById('current-player');
300
+
301
+ // 清空现有内容
302
+ topRankings.innerHTML = '';
303
+ currentPlayerContainer.innerHTML = '';
304
+
305
+ // 渲染前10名排行榜
306
+ if (data.topRankings && Array.isArray(data.topRankings)) {
307
+ data.topRankings.slice(0, 10).forEach((player, index) => {
308
+ if (player && player.name && typeof player.mileage !== 'undefined') {
309
+ const rank = index + 1;
310
+ const isTop3 = rank <= 3;
311
+ const item = createLeaderboardItem(rank, player.name, player.mileage, false, isTop3);
312
+ topRankings.appendChild(item);
313
+ }
314
+ });
315
+ }
316
+
317
+ // 渲染当前玩家排名
318
+ if (data.currentPlayer && data.currentPlayer.name && typeof data.currentPlayer.rank !== 'undefined') {
319
+ const currentItem = createLeaderboardItem(
320
+ data.currentPlayer.rank,
321
+ data.currentPlayer.name,
322
+ data.currentPlayer.mileage,
323
+ true,
324
+ false
325
+ );
326
+ currentPlayerContainer.appendChild(currentItem);
327
+ } else {
328
+ // 如果没有当前玩家数据,隐藏该部分
329
+ const divider = document.querySelector('.divider');
330
+ const currentPlayerSection = document.querySelector('.current-player-container');
331
+ if (divider) divider.style.display = 'none';
332
+ if (currentPlayerSection) currentPlayerSection.style.display = 'none';
333
+ }
334
+ }
335
+
336
+ // 示例数据 - 实际使用时将被外部数据替换
337
+ const sampleData = {
338
+ topRankings: [
339
+ { name: "Afo780", mileage: 347167 },
340
+ { name: "lαdу ναlєяijα", mileage: 331177 },
341
+ { name: "Stefan Z", mileage: 330658 },
342
+ { name: "YorkshireSlacka", mileage: 328871 },
343
+ { name: "Sun [PL]", mileage: 327208 },
344
+ { name: "joewales96 LAG", mileage: 324952 },
345
+ { name: "Turbo_Express", mileage: 320211 },
346
+ { name: "gapcio9933", mileage: 319599 },
347
+ { name: "R8 anderson", mileage: 319004 },
348
+ { name: "lorddarki85", mileage: 317788 }
349
+ ],
350
+ currentPlayer: {
351
+ rank: 3365,
352
+ name: "ZyRoX Drum",
353
+ mileage: 59515
354
+ }
355
+ };
356
+
357
+ // 页面加载时初始化示例数据
358
+ document.addEventListener('DOMContentLoaded', function() {
359
+ init(sampleData);
360
+ });
361
+ </script>
362
+ </body>
363
+ </html>
@@ -0,0 +1,63 @@
1
+ let mapConfig = {
2
+ ets: {
3
+ tileUrl: 'https://ets-map.oss-cn-beijing.aliyuncs.com/ets2/05102019/{z}/{x}/{y}.png',
4
+ multipliers: {
5
+ x: 70272,
6
+ y: 76157
7
+ },
8
+ breakpoints: {
9
+ uk: {
10
+ x: -31056.8,
11
+ y: -5832.867
12
+ }
13
+ },
14
+ bounds: {
15
+ y: 131072,
16
+ x: 131072
17
+ },
18
+ maxZoom: 8,
19
+ minZoom: 2,
20
+ // 游戏地转地图坐标
21
+ calculateMapCoordinate (x, y) {
22
+ return [
23
+ x / 1.609055 + mapConfig.ets.multipliers.x,
24
+ y / 1.609055 + mapConfig.ets.multipliers.y
25
+ ];
26
+ }
27
+ },
28
+ promods: {
29
+ tileUrl: 'https://ets-map.oss-cn-beijing.aliyuncs.com/promods/05102019/{z}/{x}/{y}.png',
30
+ multipliers: {
31
+ x: 51953,
32
+ y: 76024
33
+ },
34
+ breakpoints: {
35
+ uk: {
36
+ x: -31056.8,
37
+ y: -5832.867
38
+ }
39
+ },
40
+ bounds: {
41
+ y: 131072,
42
+ x: 131072
43
+ },
44
+ maxZoom: 8,
45
+ minZoom: 2,
46
+ // 游戏地转地图坐标
47
+ calculateMapCoordinate (x, y) {
48
+ return [
49
+ x / 2.598541 + mapConfig.promods.multipliers.x,
50
+ y / 2.598541 + mapConfig.promods.multipliers.y
51
+ ]
52
+ }
53
+ }
54
+ }
55
+
56
+ // 定义地图
57
+ let map = L.map('map', {
58
+ attributionControl: false,
59
+ crs: L.CRS.Simple,
60
+ zoomControl: false,
61
+ zoomSnap: 0.2,
62
+ zoomDelta: 0.2
63
+ });
@@ -0,0 +1,9 @@
1
+ /*
2
+ * heatmap.js v2.0.2 | JavaScript Heatmap Library
3
+ *
4
+ * Copyright 2008-2016 Patrick Wied <heatmapjs@patrick-wied.at> - All rights reserved.
5
+ * Dual licensed under MIT and Beerware license
6
+ *
7
+ * :: 2016-02-04 21:25
8
+ */
9
+ (function (a, b, c) { if (typeof module !== "undefined" && module.exports) { module.exports = c() } else if (typeof define === "function" && define.amd) { define(c) } else { b[a] = c() } })("h337", this, function () { var a = { defaultRadius: 40, defaultRenderer: "canvas2d", defaultGradient: { .25: "rgb(0,0,255)", .55: "rgb(0,255,0)", .85: "yellow", 1: "rgb(255,0,0)" }, defaultMaxOpacity: 1, defaultMinOpacity: 0, defaultBlur: .85, defaultXField: "x", defaultYField: "y", defaultValueField: "value", plugins: {} }; var b = function h() { var b = function d(a) { this._coordinator = {}; this._data = []; this._radi = []; this._min = 0; this._max = 1; this._xField = a["xField"] || a.defaultXField; this._yField = a["yField"] || a.defaultYField; this._valueField = a["valueField"] || a.defaultValueField; if (a["radius"]) { this._cfgRadius = a["radius"] } }; var c = a.defaultRadius; b.prototype = { _organiseData: function (a, b) { var d = a[this._xField]; var e = a[this._yField]; var f = this._radi; var g = this._data; var h = this._max; var i = this._min; var j = a[this._valueField] || 1; var k = a.radius || this._cfgRadius || c; if (!g[d]) { g[d] = []; f[d] = [] } if (!g[d][e]) { g[d][e] = j; f[d][e] = k } else { g[d][e] += j } if (g[d][e] > h) { if (!b) { this._max = g[d][e] } else { this.setDataMax(g[d][e]) } return false } else { return { x: d, y: e, value: j, radius: k, min: i, max: h } } }, _unOrganizeData: function () { var a = []; var b = this._data; var c = this._radi; for (var d in b) { for (var e in b[d]) { a.push({ x: d, y: e, radius: c[d][e], value: b[d][e] }) } } return { min: this._min, max: this._max, data: a } }, _onExtremaChange: function () { this._coordinator.emit("extremachange", { min: this._min, max: this._max }) }, addData: function () { if (arguments[0].length > 0) { var a = arguments[0]; var b = a.length; while (b--) { this.addData.call(this, a[b]) } } else { var c = this._organiseData(arguments[0], true); if (c) { this._coordinator.emit("renderpartial", { min: this._min, max: this._max, data: [c] }) } } return this }, setData: function (a) { var b = a.data; var c = b.length; this._data = []; this._radi = []; for (var d = 0; d < c; d++) { this._organiseData(b[d], false) } this._max = a.max; this._min = a.min || 0; this._onExtremaChange(); this._coordinator.emit("renderall", this._getInternalData()); return this }, removeData: function () { }, setDataMax: function (a) { this._max = a; this._onExtremaChange(); this._coordinator.emit("renderall", this._getInternalData()); return this }, setDataMin: function (a) { this._min = a; this._onExtremaChange(); this._coordinator.emit("renderall", this._getInternalData()); return this }, setCoordinator: function (a) { this._coordinator = a }, _getInternalData: function () { return { max: this._max, min: this._min, data: this._data, radi: this._radi } }, getData: function () { return this._unOrganizeData() } }; return b }(); var c = function i() { var a = function (a) { var b = a.gradient || a.defaultGradient; var c = document.createElement("canvas"); var d = c.getContext("2d"); c.width = 256; c.height = 1; var e = d.createLinearGradient(0, 0, 256, 1); for (var f in b) { e.addColorStop(f, b[f]) } d.fillStyle = e; d.fillRect(0, 0, 256, 1); return d.getImageData(0, 0, 256, 1).data }; var b = function (a, b) { var c = document.createElement("canvas"); var d = c.getContext("2d"); var e = a; var f = a; c.width = c.height = a * 2; if (b == 1) { d.beginPath(); d.arc(e, f, a, 0, 2 * Math.PI, false); d.fillStyle = "rgba(0,0,0,1)"; d.fill() } else { var g = d.createRadialGradient(e, f, a * b, e, f, a); g.addColorStop(0, "rgba(0,0,0,1)"); g.addColorStop(1, "rgba(0,0,0,0)"); d.fillStyle = g; d.fillRect(0, 0, 2 * a, 2 * a) } return c }; var c = function (a) { var b = []; var c = a.min; var d = a.max; var e = a.radi; var a = a.data; var f = Object.keys(a); var g = f.length; while (g--) { var h = f[g]; var i = Object.keys(a[h]); var j = i.length; while (j--) { var k = i[j]; var l = a[h][k]; var m = e[h][k]; b.push({ x: h, y: k, value: l, radius: m }) } } return { min: c, max: d, data: b } }; function d(b) { var c = b.container; var d = this.shadowCanvas = document.createElement("canvas"); var e = this.canvas = b.canvas || document.createElement("canvas"); var f = this._renderBoundaries = [1e4, 1e4, 0, 0]; var g = getComputedStyle(b.container) || {}; e.className = "heatmap-canvas"; this._width = e.width = d.width = b.width || +g.width.replace(/px/, ""); this._height = e.height = d.height = b.height || +g.height.replace(/px/, ""); this.shadowCtx = d.getContext("2d"); this.ctx = e.getContext("2d"); e.style.cssText = d.style.cssText = "position:absolute;left:0;top:0;"; c.style.position = "relative"; c.appendChild(e); this._palette = a(b); this._templates = {}; this._setStyles(b) } d.prototype = { renderPartial: function (a) { if (a.data.length > 0) { this._drawAlpha(a); this._colorize() } }, renderAll: function (a) { this._clear(); if (a.data.length > 0) { this._drawAlpha(c(a)); this._colorize() } }, _updateGradient: function (b) { this._palette = a(b) }, updateConfig: function (a) { if (a["gradient"]) { this._updateGradient(a) } this._setStyles(a) }, setDimensions: function (a, b) { this._width = a; this._height = b; this.canvas.width = this.shadowCanvas.width = a; this.canvas.height = this.shadowCanvas.height = b }, _clear: function () { this.shadowCtx.clearRect(0, 0, this._width, this._height); this.ctx.clearRect(0, 0, this._width, this._height) }, _setStyles: function (a) { this._blur = a.blur == 0 ? 0 : a.blur || a.defaultBlur; if (a.backgroundColor) { this.canvas.style.backgroundColor = a.backgroundColor } this._width = this.canvas.width = this.shadowCanvas.width = a.width || this._width; this._height = this.canvas.height = this.shadowCanvas.height = a.height || this._height; this._opacity = (a.opacity || 0) * 255; this._maxOpacity = (a.maxOpacity || a.defaultMaxOpacity) * 255; this._minOpacity = (a.minOpacity || a.defaultMinOpacity) * 255; this._useGradientOpacity = !!a.useGradientOpacity }, _drawAlpha: function (a) { var c = this._min = a.min; var d = this._max = a.max; var a = a.data || []; var e = a.length; var f = 1 - this._blur; while (e--) { var g = a[e]; var h = g.x; var i = g.y; var j = g.radius; var k = Math.min(g.value, d); var l = h - j; var m = i - j; var n = this.shadowCtx; var o; if (!this._templates[j]) { this._templates[j] = o = b(j, f) } else { o = this._templates[j] } var p = (k - c) / (d - c); n.globalAlpha = p < .01 ? .01 : p; n.drawImage(o, l, m); if (l < this._renderBoundaries[0]) { this._renderBoundaries[0] = l } if (m < this._renderBoundaries[1]) { this._renderBoundaries[1] = m } if (l + 2 * j > this._renderBoundaries[2]) { this._renderBoundaries[2] = l + 2 * j } if (m + 2 * j > this._renderBoundaries[3]) { this._renderBoundaries[3] = m + 2 * j } } }, _colorize: function () { var a = this._renderBoundaries[0]; var b = this._renderBoundaries[1]; var c = this._renderBoundaries[2] - a; var d = this._renderBoundaries[3] - b; var e = this._width; var f = this._height; var g = this._opacity; var h = this._maxOpacity; var i = this._minOpacity; var j = this._useGradientOpacity; if (a < 0) { a = 0 } if (b < 0) { b = 0 } if (a + c > e) { c = e - a } if (b + d > f) { d = f - b } var k = this.shadowCtx.getImageData(a, b, c, d); var l = k.data; var m = l.length; var n = this._palette; for (var o = 3; o < m; o += 4) { var p = l[o]; var q = p * 4; if (!q) { continue } var r; if (g > 0) { r = g } else { if (p < h) { if (p < i) { r = i } else { r = p } } else { r = h } } l[o - 3] = n[q]; l[o - 2] = n[q + 1]; l[o - 1] = n[q + 2]; l[o] = j ? n[q + 3] : r } k.data = l; this.ctx.putImageData(k, a, b); this._renderBoundaries = [1e3, 1e3, 0, 0] }, getValueAt: function (a) { var b; var c = this.shadowCtx; var d = c.getImageData(a.x, a.y, 1, 1); var e = d.data[3]; var f = this._max; var g = this._min; b = Math.abs(f - g) * (e / 255) >> 0; return b }, getDataURL: function () { return this.canvas.toDataURL() } }; return d }(); var d = function j() { var b = false; if (a["defaultRenderer"] === "canvas2d") { b = c } return b }(); var e = { merge: function () { var a = {}; var b = arguments.length; for (var c = 0; c < b; c++) { var d = arguments[c]; for (var e in d) { a[e] = d[e] } } return a } }; var f = function k() { var c = function h() { function a() { this.cStore = {} } a.prototype = { on: function (a, b, c) { var d = this.cStore; if (!d[a]) { d[a] = [] } d[a].push(function (a) { return b.call(c, a) }) }, emit: function (a, b) { var c = this.cStore; if (c[a]) { var d = c[a].length; for (var e = 0; e < d; e++) { var f = c[a][e]; f(b) } } } }; return a }(); var f = function (a) { var b = a._renderer; var c = a._coordinator; var d = a._store; c.on("renderpartial", b.renderPartial, b); c.on("renderall", b.renderAll, b); c.on("extremachange", function (b) { a._config.onExtremaChange && a._config.onExtremaChange({ min: b.min, max: b.max, gradient: a._config["gradient"] || a._config["defaultGradient"] }) }); d.setCoordinator(c) }; function g() { var g = this._config = e.merge(a, arguments[0] || {}); this._coordinator = new c; if (g["plugin"]) { var h = g["plugin"]; if (!a.plugins[h]) { throw new Error("Plugin '" + h + "' not found. Maybe it was not registered.") } else { var i = a.plugins[h]; this._renderer = new i.renderer(g); this._store = new i.store(g) } } else { this._renderer = new d(g); this._store = new b(g) } f(this) } g.prototype = { addData: function () { this._store.addData.apply(this._store, arguments); return this }, removeData: function () { this._store.removeData && this._store.removeData.apply(this._store, arguments); return this }, setData: function () { this._store.setData.apply(this._store, arguments); return this }, setDataMax: function () { this._store.setDataMax.apply(this._store, arguments); return this }, setDataMin: function () { this._store.setDataMin.apply(this._store, arguments); return this }, configure: function (a) { this._config = e.merge(this._config, a); this._renderer.updateConfig(this._config); this._coordinator.emit("renderall", this._store._getInternalData()); return this }, repaint: function () { this._coordinator.emit("renderall", this._store._getInternalData()); return this }, getData: function () { return this._store.getData() }, getDataURL: function () { return this._renderer.getDataURL() }, getValueAt: function (a) { if (this._store.getValueAt) { return this._store.getValueAt(a) } else if (this._renderer.getValueAt) { return this._renderer.getValueAt(a) } else { return null } } }; return g }(); var g = { create: function (a) { return new f(a) }, register: function (b, c) { a.plugins[b] = c } }; return g });