forked from emberlzhang/task_dungeon-portals-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
106 lines (90 loc) · 3.28 KB
/
app.py
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
from flask import Flask, jsonify, request, render_template
from flask_cors import CORS
import pandas as pd
import os
from portal_maker import PortalMaker
from config import get_config
app = Flask(__name__)
CORS(app)
# Set configuration values
app.config.from_object(get_config())
# Create the "data" folder if it doesn't exist
os.makedirs(app.config['UPLOAD_FOLDER'], exist_ok=True)
@app.route('/')
def index():
return render_template('index.html')
@app.route('/config')
def get_config_route():
return jsonify({
'apiBaseUrl': app.config['API_BASE_URL']
})
@app.route('/portal_map', methods=['GET'])
def get_portal_map():
portal_maker = PortalMaker(n_doors=18, n_floors=6, steps_to_solve=3)
portal_map = portal_maker.portal_picker() # Generate the portal map
return jsonify(portal_map)
if __name__ == '__main__':
# Set port based on production port or default
port = int(os.environ.get('PORT', app.config['FLASK_RUN_PORT']))
app.run(
host=app.config['FLASK_RUN_HOST'],
port=port,
debug=app.config['FLASK_DEBUG']
)
# class GameSession(db.Model):
# id = db.Column(db.Integer, primary_key=True)
# user_id = db.Column(db.Integer, nullable=False)
# start_time = db.Column(db.DateTime, nullable=False)
# actions = db.Column(db.JSON, nullable=False) # Store JSON data of game actions
# @app.route('/save-game', methods=['POST'])
# def save_game():
# data = request.json
# try:
# new_game = GameSession(
# user_id=data['user_id'],
# start_time=data['start_time'],
# actions=data['actions']
# )
# db.session.add(new_game)
# db.session.commit()
# return jsonify({"message": "Game data saved successfully"}), 201
# except Exception as e:
# return jsonify({"error": str(e)}), 400
# @app.route('/export-csv', methods=['GET'])
# def export_csv():
# try:
# # Query all game sessions
# sessions = GameSession.query.all()
# # Convert to DataFrame
# data = [
# {
# 'user_id': session.user_id,
# 'start_time': session.start_time,
# 'actions': session.actions
# }
# for session in sessions
# ]
# df = pd.DataFrame(data)
# # Define file path
# file_path = os.path.join(app.config['UPLOAD_FOLDER'], 'game_sessions.csv')
# # Write DataFrame to CSV
# df.to_csv(file_path, index=False)
# return jsonify({"message": "CSV file has been created successfully."}), 200
# except Exception as e:
# return jsonify({"error": str(e)}), 500
# @app.route('/download-csv', methods=['GET'])
# def download_csv():
# try:
# # Define file path
# file_path = os.path.join(app.config['UPLOAD_FOLDER'], 'game_sessions.csv')
# return send_from_directory(app.config['UPLOAD_FOLDER'], 'game_sessions.csv')
# except Exception as e:
# return jsonify({"error": str(e)}), 500
# @app.route('/api/data', methods=['GET', 'POST'])
# def handle_data():
# if request.method == 'POST':
# data = request.json
# # Process the data
# return jsonify({'status': 'success', 'data': data})
# else:
# return jsonify({'message': 'Welcome to the API'})