BattleMapApp

所属分类:浏览器
开发工具:C#
文件大小:0KB
下载次数:0
上传日期:2021-10-01 19:27:14
上 传 者sh-1993
说明:  简单的ASP.Net Core MVC应用程序,用于通过web浏览器(多)玩桌面游戏
(Simple ASP.Net Core MVC application for (multi) playing tabletop games via web browser)

文件列表:
.vs/ (0, 2021-10-01)
.vs/BattleMapApp/ (0, 2021-10-01)
.vs/BattleMapApp/DesignTimeBuild/ (0, 2021-10-01)
.vs/BattleMapApp/DesignTimeBuild/.dtbcache.v2 (142674, 2021-10-01)
.vs/BattleMapApp/config/ (0, 2021-10-01)
.vs/BattleMapApp/config/applicationhost.config (79775, 2021-10-01)
.vs/BattleMapApp/v16/ (0, 2021-10-01)
.vs/BattleMapApp/v16/.suo (155648, 2021-10-01)
BattleMapApp.sln (1117, 2021-10-01)
BattleMapApp/ (0, 2021-10-01)
BattleMapApp/BattleMapApp.csproj (1306, 2021-10-01)
BattleMapApp/BattleMapApp.csproj.user (1611, 2021-10-01)
BattleMapApp/Controllers/ (0, 2021-10-01)
BattleMapApp/Controllers/HomeController.cs (2894, 2021-10-01)
BattleMapApp/Controllers/SessionController.cs (5458, 2021-10-01)
BattleMapApp/Controllers/TokensController.cs (5301, 2021-10-01)
BattleMapApp/Data/ (0, 2021-10-01)
BattleMapApp/Data/TokenContext.cs (437, 2021-10-01)
BattleMapApp/Hubs/ (0, 2021-10-01)
BattleMapApp/Hubs/SessionHub.cs (2745, 2021-10-01)
BattleMapApp/Migrations/ (0, 2021-10-01)
BattleMapApp/Migrations/20210820133147_InitialCreate.Designer.cs (1551, 2021-10-01)
BattleMapApp/Migrations/20210820133147_InitialCreate.cs (1009, 2021-10-01)
BattleMapApp/Migrations/TokenContextModelSnapshot.cs (1477, 2021-10-01)
BattleMapApp/Models/ (0, 2021-10-01)
BattleMapApp/Models/ConnectionInfo.cs (1671, 2021-10-01)
BattleMapApp/Models/ErrorViewModel.cs (211, 2021-10-01)
BattleMapApp/Models/Game.cs (533, 2021-10-01)
BattleMapApp/Models/LogMessage.cs (349, 2021-10-01)
BattleMapApp/Models/Token.cs (289, 2021-10-01)
BattleMapApp/Models/User.cs (1413, 2021-10-01)
BattleMapApp/Program.cs (694, 2021-10-01)
BattleMapApp/Properties/ (0, 2021-10-01)
BattleMapApp/Properties/launchSettings.json (683, 2021-10-01)
BattleMapApp/Properties/serviceDependencies.json (109, 2021-10-01)
BattleMapApp/Properties/serviceDependencies.local.json (115, 2021-10-01)
BattleMapApp/Properties/serviceDependencies.local.json.user (145, 2021-10-01)
BattleMapApp/Session/ (0, 2021-10-01)
BattleMapApp/Session/GameSession.cs (1215, 2021-10-01)
... ...

# BattleMapApp Author: Przemysaw Maecki Summary: The project is a simple ASP.Net Core MVC application for (multi) playing tabletop games via web browser. It allows players to move around their tokens, which represents their characters, on the 2D map previously uploaded by the player who acts as Game Master. For now it is only possible for one game running - each player will access the same game data. Any libraries managing better site styles (like AngularJS or React) were not yet used in the project - the project is used as my learning attempt at ASP.Net Core, but also at web technologies (HTML5, CSS, JavaScript). The project is no rivalry to any other web application with similar functionalities. Stuff used in project: - C#, ASP.Net Core MVC for communication user-server - JavaScript for user interactions with game content (tokens, map, etc.) - Microsoft SignalR library for handling communication between users - HTML5 and CSS for (basic) sites. -