2023-04-16 20:11:49 +02:00
|
|
|
/*
|
|
|
|
* The Peacock Project - a HITMAN server replacement.
|
|
|
|
* Copyright (C) 2021-2023 The Peacock Project Team
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as configSwizzleManager from "./configSwizzleManager"
|
2023-04-25 06:41:46 +02:00
|
|
|
import * as controller from "./controller"
|
|
|
|
import * as databaseHandler from "./databaseHandler"
|
|
|
|
import * as discordRp from "./discordRp"
|
|
|
|
import * as entitlementStrategies from "./entitlementStrategies"
|
|
|
|
import * as eventHandler from "./eventHandler"
|
|
|
|
import * as evergreen from "./evergreen"
|
|
|
|
import * as flags from "./flags"
|
|
|
|
import * as hooksImpl from "./hooksImpl"
|
|
|
|
import * as hotReloadService from "./hotReloadService"
|
|
|
|
import * as inventory from "./inventory"
|
|
|
|
import * as loadouts from "./loadouts"
|
|
|
|
import * as loggingInterop from "./loggingInterop"
|
|
|
|
import * as menuData from "./menuData"
|
|
|
|
import * as oauthToken from "./oauthToken"
|
|
|
|
import * as officialServerAuth from "./officialServerAuth"
|
|
|
|
import * as ownership from "./ownership"
|
|
|
|
import * as platformEntitlements from "./platformEntitlements"
|
2023-04-29 05:39:57 +02:00
|
|
|
import * as playStyles from "./playStyles"
|
2023-04-25 06:41:46 +02:00
|
|
|
import * as profileHandler from "./profileHandler"
|
|
|
|
import * as scoreHandler from "./scoreHandler"
|
|
|
|
import * as sessionSerialization from "./sessionSerialization"
|
2023-11-22 02:34:56 +01:00
|
|
|
import * as smfSupport from "./smfSupport"
|
2023-04-25 06:41:46 +02:00
|
|
|
import * as utils from "./utils"
|
|
|
|
import * as webFeatures from "./webFeatures"
|
|
|
|
import * as legacyContractHandler from "./2016/legacyContractHandler"
|
|
|
|
import * as legacyEventRouter from "./2016/legacyEventRouter"
|
|
|
|
import * as legacyMenuData from "./2016/legacyMenuData"
|
|
|
|
import * as legacyMenuSystem from "./2016/legacyMenuSystem"
|
|
|
|
import * as legacyProfileRouter from "./2016/legacyProfileRouter"
|
|
|
|
import * as challengeHelpers from "./candle/challengeHelpers"
|
|
|
|
import * as challengeService from "./candle/challengeService"
|
|
|
|
import * as masteryService from "./candle/masteryService"
|
|
|
|
import * as progressionService from "./candle/progressionService"
|
2023-04-16 20:11:49 +02:00
|
|
|
import * as contractRouting from "./contracts/contractRouting"
|
2023-04-25 06:41:46 +02:00
|
|
|
import * as contractsModeRouting from "./contracts/contractsModeRouting"
|
|
|
|
import * as dataGen from "./contracts/dataGen"
|
|
|
|
import * as elusiveTargetArcades from "./contracts/elusiveTargetArcades"
|
|
|
|
import * as elusiveTargets from "./contracts/elusiveTargets"
|
|
|
|
import * as hitsCategoryService from "./contracts/hitsCategoryService"
|
|
|
|
import * as missionsInLocation from "./contracts/missionsInLocation"
|
|
|
|
import * as reportRouting from "./contracts/reportRouting"
|
|
|
|
import * as client from "./discord/client"
|
|
|
|
import * as ipc from "./discord/ipc"
|
|
|
|
import * as liveSplitClient from "./livesplit/liveSplitClient"
|
|
|
|
import * as liveSplitManager from "./livesplit/liveSplitManager"
|
|
|
|
import * as campaigns from "./menus/campaigns"
|
|
|
|
import * as destinations from "./menus/destinations"
|
|
|
|
import * as favoriteContracts from "./menus/favoriteContracts"
|
|
|
|
import * as imageHandler from "./menus/imageHandler"
|
|
|
|
import * as menuSystem from "./menus/menuSystem"
|
|
|
|
import * as planning from "./menus/planning"
|
|
|
|
import * as playnext from "./menus/playnext"
|
|
|
|
import * as sniper from "./menus/sniper"
|
|
|
|
import * as multiplayerMenuData from "./multiplayer/multiplayerMenuData"
|
|
|
|
import * as multiplayerService from "./multiplayer/multiplayerService"
|
|
|
|
import * as multiplayerUtils from "./multiplayer/multiplayerUtils"
|
|
|
|
import * as contextListeners from "./statemachines/contextListeners"
|
|
|
|
import * as contractCreation from "./statemachines/contractCreation"
|
|
|
|
import * as challenges from "./types/challenges"
|
|
|
|
import * as events from "./types/events"
|
|
|
|
import * as gameSchemas from "./types/gameSchemas"
|
|
|
|
import * as livesplit from "./types/livesplit"
|
|
|
|
import * as mastery from "./types/mastery"
|
|
|
|
import * as score from "./types/score"
|
|
|
|
import * as scoring from "./types/scoring"
|
|
|
|
import * as types from "./types/types"
|
2023-04-16 20:11:49 +02:00
|
|
|
import * as escalationService from "./contracts/escalations/escalationService"
|
|
|
|
|
|
|
|
export default {
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/configSwizzleManager": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...configSwizzleManager,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/controller": { __esModule: true, ...controller },
|
|
|
|
"@peacockproject/core/databaseHandler": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...databaseHandler,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/discordRp": { __esModule: true, ...discordRp },
|
|
|
|
"@peacockproject/core/entitlementStrategies": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...entitlementStrategies,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/eventHandler": { __esModule: true, ...eventHandler },
|
|
|
|
"@peacockproject/core/evergreen": { __esModule: true, ...evergreen },
|
|
|
|
"@peacockproject/core/flags": { __esModule: true, ...flags },
|
|
|
|
"@peacockproject/core/hooksImpl": { __esModule: true, ...hooksImpl },
|
|
|
|
"@peacockproject/core/hotReloadService": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...hotReloadService,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/inventory": { __esModule: true, ...inventory },
|
|
|
|
"@peacockproject/core/loadouts": { __esModule: true, ...loadouts },
|
2023-04-16 20:11:49 +02:00
|
|
|
"@peacockproject/core/loggingInterop": {
|
|
|
|
__esModule: true,
|
|
|
|
...loggingInterop,
|
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/menuData": { __esModule: true, ...menuData },
|
|
|
|
"@peacockproject/core/oauthToken": { __esModule: true, ...oauthToken },
|
|
|
|
"@peacockproject/core/officialServerAuth": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...officialServerAuth,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/ownership": { __esModule: true, ...ownership },
|
|
|
|
"@peacockproject/core/platformEntitlements": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...platformEntitlements,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-29 05:39:57 +02:00
|
|
|
"@peacockproject/core/playStyles": { __esModule: true, ...playStyles },
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/profileHandler": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...profileHandler,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/scoreHandler": { __esModule: true, ...scoreHandler },
|
|
|
|
"@peacockproject/core/sessionSerialization": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...sessionSerialization,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-11-22 02:34:56 +01:00
|
|
|
"@peacockproject/core/smfSupport": { __esModule: true, ...smfSupport },
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/utils": { __esModule: true, ...utils },
|
|
|
|
"@peacockproject/core/webFeatures": { __esModule: true, ...webFeatures },
|
|
|
|
"@peacockproject/core/2016/legacyContractHandler": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...legacyContractHandler,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/2016/legacyEventRouter": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...legacyEventRouter,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/2016/legacyMenuData": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...legacyMenuData,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/2016/legacyMenuSystem": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...legacyMenuSystem,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/2016/legacyProfileRouter": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...legacyProfileRouter,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/candle/challengeHelpers": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...challengeHelpers,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/candle/challengeService": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...challengeService,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/candle/masteryService": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...masteryService,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/candle/progressionService": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...progressionService,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/contracts/contractRouting": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...contractRouting,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/contracts/contractsModeRouting": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...contractsModeRouting,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/contracts/dataGen": { __esModule: true, ...dataGen },
|
|
|
|
"@peacockproject/core/contracts/elusiveTargetArcades": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...elusiveTargetArcades,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/contracts/elusiveTargets": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...elusiveTargets,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/contracts/hitsCategoryService": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...hitsCategoryService,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
|
|
|
"@peacockproject/core/contracts/missionsInLocation": {
|
|
|
|
__esModule: true,
|
|
|
|
...missionsInLocation,
|
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/contracts/reportRouting": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...reportRouting,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/discord/client": { __esModule: true, ...client },
|
|
|
|
"@peacockproject/core/discord/ipc": { __esModule: true, ...ipc },
|
|
|
|
"@peacockproject/core/livesplit/liveSplitClient": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...liveSplitClient,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/livesplit/liveSplitManager": {
|
2023-04-21 19:48:56 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...liveSplitManager,
|
2023-04-21 19:48:56 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/menus/campaigns": { __esModule: true, ...campaigns },
|
|
|
|
"@peacockproject/core/menus/destinations": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...destinations,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/menus/favoriteContracts": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...favoriteContracts,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/menus/imageHandler": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...imageHandler,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/menus/menuSystem": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...menuSystem,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/menus/planning": { __esModule: true, ...planning },
|
|
|
|
"@peacockproject/core/menus/playnext": { __esModule: true, ...playnext },
|
|
|
|
"@peacockproject/core/menus/sniper": { __esModule: true, ...sniper },
|
|
|
|
"@peacockproject/core/multiplayer/multiplayerMenuData": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...multiplayerMenuData,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/multiplayer/multiplayerService": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...multiplayerService,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/multiplayer/multiplayerUtils": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...multiplayerUtils,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/statemachines/contextListeners": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...contextListeners,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/statemachines/contractCreation": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...contractCreation,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/types/challenges": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...challenges,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/types/events": { __esModule: true, ...events },
|
|
|
|
"@peacockproject/core/types/gameSchemas": {
|
2023-04-16 20:11:49 +02:00
|
|
|
__esModule: true,
|
2023-04-25 06:41:46 +02:00
|
|
|
...gameSchemas,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
2023-04-25 06:41:46 +02:00
|
|
|
"@peacockproject/core/types/livesplit": { __esModule: true, ...livesplit },
|
|
|
|
"@peacockproject/core/types/mastery": { __esModule: true, ...mastery },
|
|
|
|
"@peacockproject/core/types/score": { __esModule: true, ...score },
|
|
|
|
"@peacockproject/core/types/scoring": { __esModule: true, ...scoring },
|
|
|
|
"@peacockproject/core/types/types": { __esModule: true, ...types },
|
|
|
|
"@peacockproject/core/contracts/escalations/escalationService": {
|
|
|
|
__esModule: true,
|
|
|
|
...escalationService,
|
2023-04-16 20:11:49 +02:00
|
|
|
},
|
|
|
|
}
|