POGOserver - Porting POGOserver to Visual Studio

This commit is contained in:
--=FurtiF™=-- 2016-10-31 05:04:59 +01:00
parent 2e05aa2543
commit 6ea7c17176
7 changed files with 31 additions and 15 deletions

View File

@ -1,4 +1,4 @@
<html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
@ -7,7 +7,7 @@
<meta content="origin-when-cross-origin" name="referrer" />
<title>POGOserver api</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="/api/css/main.css">
<link rel="stylesheet" type="text/css" href="/api//css/main.css">
<link rel="stylesheet" type="text/css" href="/api/css/pure.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vex-js/2.3.4/js/vex.combined.min.js"></script>

View File

@ -1,7 +1,7 @@
{
"name": "POGOServer",
"version": "0.6.1",
"description": "Pokemon GO Server Emulator ",
"description": "",
"repository": {
"type": "git",
"url": "git://github.com/maierfelix/POGOServer.git"
@ -20,23 +20,22 @@
"author": "Felix Maier",
"license": "GNU GPL v3",
"dependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.1",
"babel-preset-stage-0": "^6.5.0",
"directory-tree": "^1.1.1",
"fs-extra": "^0.30.0",
"jwt-decode": "^2.1.0",
"mysql": "^2.11.1",
"nodegit": "^0.16.0",
"node-pogo-protos": "^1.5.0",
"node-pogo-protos": "^1.4.0",
"pcrypt": "git+https://github.com/laverdet/pcrypt.git",
"pogo-asset-downloader": "^0.3.1",
"pokerare": "^0.1.1",
"pokemongo-protobuf": "^1.12.0",
"pokemongo-protobuf": "^1.11.0",
"prompt": "^1.0.0",
"s2-geometry": "^1.2.9",
"url": "^0.11.0"
},
"devDependencies": {
}
"devDependencies": {}
}

View File

@ -7,7 +7,9 @@ import Cell from "./models/World/Cell";
import print from "./print";
import CFG from "../cfg";
import { getHashCodeFrom } from "./utils";
import {
getHashCodeFrom
} from "./utils";
const S2Geo = s2.S2;

View File

@ -4,7 +4,12 @@ import request from "request";
import readline from "readline";
import POGOProtos from "pokemongo-protobuf";
import { _toCC, deXOR, inherit, getHashCodeFrom } from "./utils";
import {
_toCC,
deXOR,
inherit,
getHashCodeFrom
} from "./utils";
import print from "./print";
import CFG from "../cfg";

View File

@ -6,7 +6,11 @@ import POGOProtos from "pokemongo-protobuf";
import print from "./print";
import CFG from "../cfg";
import { deXOR, validEmail, getHashCodeFrom } from "./utils";
import {
deXOR,
validEmail,
getHashCodeFrom
} from "./utils";
/**
* @param {Request} req

View File

@ -3,7 +3,9 @@ import POGOProtos from "pokemongo-protobuf";
import print from "./print";
import CFG from "../cfg";
import { _toCC } from "./utils";
import {
_toCC
} from "./utils";
/**
* @param {Request} req

View File

@ -10,7 +10,11 @@ import * as shared from "./shared";
import GameMaster from "./models/GameMaster";
import { _toCC, capitalize, idToPkmnBundleName } from "./utils";
import {
_toCC,
capitalize,
idToPkmnBundleName
} from "./utils";
export function setup() {