mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
2730e4fc91
* added config.json removed old config files Signed-off-by: Arthur <learthurgo@gmail.com> * superscript.py v 0.0.6.000 Signed-off-by: Arthur <learthurgo@gmail.com> * changed data.py Signed-off-by: Arthur <learthurgo@gmail.com> * changes to config.json Signed-off-by: Arthur <learthurgo@gmail.com> * removed cells from visualize_pit.py Signed-off-by: Arthur <learthurgo@gmail.com> * more changes to visualize_pit.py Signed-off-by: Arthur <learthurgo@gmail.com> * added analysis-master/metrics/__pycache__ to git ignore moved pit configs in config.json to the borrom superscript.py v 0.0.6.001 Signed-off-by: Arthur <learthurgo@gmail.com> * removed old database key Signed-off-by: Arthur <learthurgo@gmail.com> * adjusted config files Signed-off-by: Arthur <learthurgo@gmail.com> * Delete config-pop.json * fixed .gitignore Signed-off-by: Arthur <learthurgo@gmail.com> * analysis.py 1.2.1.003 added team kv pair to config.json Signed-off-by: Arthur <learthurgo@gmail.com> * superscript.py v 0.0.6.002 Signed-off-by: Arthur <learthurgo@gmail.com> * finished app.py API made minute changes to parentheses use in various packages Signed-off-by: Arthur Lu <learthurgo@gmail.com> * bug fixes in app.py Signed-off-by: Arthur Lu <learthurgo@gmail.com> * bug fixes in app.py Signed-off-by: Arthur Lu <learthurgo@gmail.com> * made changes to .gitignore Signed-off-by: Arthur Lu <learthurgo@gmail.com> * made changes to .gitignore Signed-off-by: Arthur Lu <learthurgo@gmail.com> * deleted a __pycache__ folder from metrics Signed-off-by: Arthur Lu <learthurgo@gmail.com> * more changes to .gitignore Signed-off-by: Arthur Lu <learthurgo@gmail.com> * additions to app.py Signed-off-by: Arthur Lu <learthurgo@gmail.com> * renamed app.py to api.py Signed-off-by: Arthur Lu <learthurgo@gmail.com> * removed extranneous files Signed-off-by: Arthur Lu <learthurgo@gmail.com> * renamed api.py to tra.py removed rest api calls from tra.py * renamed api.py to tra.py removed rest api calls from tra.py Signed-off-by: Arthur Lu <learthurgo@gmail.com> * removed flask import from tra.py Signed-off-by: Arthur Lu <learthurgo@gmail.com> * changes to devcontainer.json Signed-off-by: Arthur Lu <learthurgo@gmail.com> * fixed unit tests to be correct removed some tests regressions because of potential function overflow removed trueskill unit test because of slight deviation chance Signed-off-by: Arthur Lu <learthurgo@gmail.com>
91 lines
1.7 KiB
Python
91 lines
1.7 KiB
Python
import json
|
|
import superscript as su
|
|
import threading
|
|
|
|
__author__ = (
|
|
"Arthur Lu <learthurgo@gmail.com>",
|
|
)
|
|
|
|
match = False
|
|
metric = False
|
|
pit = False
|
|
|
|
match_enable = True
|
|
metric_enable = True
|
|
pit_enable = True
|
|
|
|
config = {}
|
|
|
|
def main():
|
|
|
|
global match
|
|
global metric
|
|
global pit
|
|
|
|
global match_enable
|
|
global metric_enable
|
|
global pit_enable
|
|
|
|
global config
|
|
config = su.load_config("config.json")
|
|
|
|
while(True):
|
|
|
|
if match_enable == True and match == False:
|
|
|
|
def target():
|
|
|
|
apikey = config["key"]["database"]
|
|
competition = config["competition"]
|
|
tests = config["statistics"]["match"]
|
|
|
|
data = su.load_match(apikey, competition)
|
|
su.matchloop(apikey, competition, data, tests)
|
|
|
|
match = False
|
|
return
|
|
|
|
match = True
|
|
task = threading.Thread(name = "match", target=target)
|
|
task.start()
|
|
|
|
if metric_enable == True and metric == False:
|
|
|
|
def target():
|
|
|
|
apikey = config["key"]["database"]
|
|
tbakey = config["key"]["tba"]
|
|
competition = config["competition"]
|
|
metric = config["statistics"]["metric"]
|
|
|
|
timestamp = su.get_previous_time(apikey)
|
|
|
|
su.metricloop(tbakey, apikey, competition, timestamp, metric)
|
|
|
|
metric = False
|
|
return
|
|
|
|
match = True
|
|
task = threading.Thread(name = "metric", target=target)
|
|
task.start()
|
|
|
|
if pit_enable == True and pit == False:
|
|
|
|
def target():
|
|
|
|
apikey = config["key"]["database"]
|
|
competition = config["competition"]
|
|
tests = config["statistics"]["pit"]
|
|
|
|
data = su.load_pit(apikey, competition)
|
|
su.pitloop(apikey, competition, data, tests)
|
|
|
|
pit = False
|
|
return
|
|
|
|
pit = True
|
|
task = threading.Thread(name = "pit", target=target)
|
|
task.start()
|
|
|
|
task = threading.Thread(name = "main", target=main)
|
|
task.start() |