Browse Source

live map v2

master
gsd 1 year ago
parent
commit
01efc5a32f
  1. BIN
      src/assets/emblems/blu/Demoman_emblem_BLU.png
  2. BIN
      src/assets/emblems/blu/Engineer_emblem_BLU.png
  3. BIN
      src/assets/emblems/blu/Heavy_emblem_BLU.png
  4. BIN
      src/assets/emblems/blu/Medic_emblem_BLU.png
  5. BIN
      src/assets/emblems/blu/Pyro_emblem_BLU.png
  6. BIN
      src/assets/emblems/blu/Scout_emblem_BLU.png
  7. BIN
      src/assets/emblems/blu/Sniper_emblem_BLU.png
  8. BIN
      src/assets/emblems/blu/Soldier_emblem_BLU.png
  9. BIN
      src/assets/emblems/blu/Spy_emblem_BLU.png
  10. BIN
      src/assets/emblems/red/Demoman_emblem_RED.png
  11. BIN
      src/assets/emblems/red/Engineer_emblem_RED.png
  12. BIN
      src/assets/emblems/red/Heavy_emblem_RED.png
  13. BIN
      src/assets/emblems/red/Medic_emblem_RED.png
  14. BIN
      src/assets/emblems/red/Pyro_emblem_RED.png
  15. BIN
      src/assets/emblems/red/Scout_emblem_RED.png
  16. BIN
      src/assets/emblems/red/Sniper_emblem_RED.png
  17. BIN
      src/assets/emblems/red/Soldier_emblem_RED.png
  18. BIN
      src/assets/emblems/red/Spy_emblem_RED.png
  19. 85
      src/components/ActionDialogs/PlayerMap.vue

BIN
src/assets/emblems/blu/Demoman_emblem_BLU.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
src/assets/emblems/blu/Engineer_emblem_BLU.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
src/assets/emblems/blu/Heavy_emblem_BLU.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
src/assets/emblems/blu/Medic_emblem_BLU.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
src/assets/emblems/blu/Pyro_emblem_BLU.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
src/assets/emblems/blu/Scout_emblem_BLU.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
src/assets/emblems/blu/Sniper_emblem_BLU.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

BIN
src/assets/emblems/blu/Soldier_emblem_BLU.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
src/assets/emblems/blu/Spy_emblem_BLU.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

BIN
src/assets/emblems/red/Demoman_emblem_RED.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

BIN
src/assets/emblems/red/Engineer_emblem_RED.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
src/assets/emblems/red/Heavy_emblem_RED.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

BIN
src/assets/emblems/red/Medic_emblem_RED.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
src/assets/emblems/red/Pyro_emblem_RED.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
src/assets/emblems/red/Scout_emblem_RED.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
src/assets/emblems/red/Sniper_emblem_RED.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
src/assets/emblems/red/Soldier_emblem_RED.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
src/assets/emblems/red/Spy_emblem_RED.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

85
src/components/ActionDialogs/PlayerMap.vue

@ -1,24 +1,27 @@
<template>
<div>
<md-dialog :md-active.sync="show" @close="show=false">
<l-map :crs="Simple()" v-if="map_exists" style="height: 800px; width: 800px" :min-zoom="-3" :set-zoom="-1" :center="[cords[map_name].y, cords[map_name].x]">
<l-map :crs="Simple()" v-if="map_exists" style="height: 800px; width: 800px" :min-zoom="-1" :zoom="-1" :center="[cords[map_name].y, cords[map_name].x]">
<l-image-overlay :url="`https://tf2.pblr-nyk.pro/site_content/images/maps/${this.map_name}.jpg`" :bounds="[[0,0], [2160, 3840]]"/>
<l-marker v-for="player in players" :key="player.id" :lat-lng="getRektPos(player.pos)">
<l-icon class-name="icom-map">{{player.name}}</l-icon>
<l-icon class-name="pm_icon" :icon-url="getClzEmblem(player.team, player.clz)"/>
<l-popup><p>{{player.name}}</p></l-popup>
</l-marker>
</l-map>
<h4 v-else>Вид карты {{map_name}} отсутвует!</h4>
<md-button class="btn-default" v-on:click="showMe(false)">Закрыть</md-button>
</md-dialog>
</div>
</template>
<script>
import { LMap, LImageOverlay, LMarker, LIcon } from "vue2-leaflet";
import {LMap, LImageOverlay, LMarker, LIcon, LPopup} from "vue2-leaflet";
import axios from "axios";
import {Simple} from "leaflet/src/geo/crs/CRS.Simple";
import {toLatLng} from "leaflet/src/geo/LatLng";
export default {
name: "PlayerMap",
components: {LMap, LImageOverlay, LMarker, LIcon},
components: {LMap, LImageOverlay, LMarker, LIcon, LPopup},
props: {
players: {
type: Array,
@ -37,6 +40,11 @@ export default {
"x":2620,
"y":1427,
"hu":5
},
"zavod_stoilo_night":{
"x":1920,
"y":1050,
"hu":4
}
}
}),
@ -54,14 +62,67 @@ export default {
.catch(() => this.map_exists = false)
},
getRektPos(pos) {
console.log(" ");
console.log(pos[0], pos[1]);
console.log(pos[0] / this.cords[this.map_name].hu, pos[1] / this.cords[this.map_name].hu);
var player_x = this.cords[this.map_name].x + (pos[0] / this.cords[this.map_name].hu);
var player_y = this.cords[this.map_name].y + (pos[1] / this.cords[this.map_name].hu);
console.log(player_x, player_y);
return [player_y, player_x];
//console.log(" ");
//console.log(pos[0], pos[1]);
//console.log(pos[0] / this.cords[this.map_name].hu, pos[1] / this.cords[this.map_name].hu);
const player_x = this.cords[this.map_name].x + (pos[0] / this.cords[this.map_name].hu);
const player_y = this.cords[this.map_name].y + (pos[1] / this.cords[this.map_name].hu);
//console.log(player_x, player_y);
return toLatLng(player_y, player_x);
},
getStyle4Icon(team, clz) {
let stl = {
"width": "32px !important",
"height": "32px !important",
"margin": "0 !important;"
};
const img = this.getClzEmblem(team, clz);
if (img !== null) {
stl["background-image"] = img;
}
console.log(stl["background-image"]);
return stl;
},
getClzEmblem(team, clz) {
const t = this.calcTeam(team);
const c = this.calcClass(clz);
if (t === null || c == null) {
return null;
}
return require(`@/assets/emblems/${t.toLowerCase()}/${c}_emblem_${t}.png`);
},
calcTeam(team) {
switch (team) {
case 0: return null;
case 1: return null;
case 2: return "RED";
case 3: return "BLU";
default: return null;
}
},
calcClass(clz) {
switch (clz) {
case 0: return null;
case 1: return "Scout";
case 2: return "Sniper";
case 3: return "Soldier";
case 4: return "Demoman";
case 5: return "Medic";
case 6: return "Heavy";
case 7: return "Pyro";
case 8: return "Spy";
case 9: return "Engineer";
default: return null;
}
}
}
}
</script>
</script>
<style>
.pm_icon {
width: 24px !important;
height: 24px !important;
margin: 0 !important;
}
</style>
Loading…
Cancel
Save