forked from variousauthors/heart-projector-online
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
60 lines (56 loc) · 2.12 KB
/
Copy pathdata.js
File metadata and controls
60 lines (56 loc) · 2.12 KB
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
const powellAndClark = require("./spaces/powell-and-clark");
const stairwell = require("./spaces/stairwell");
const heartProjector = require("./spaces/heart-projector");
const elevator = require("./spaces/elevator");
const thePapercutArcade = require("./spaces/the-papercut-arcade");
const pixelVancouverMap = require("./spaces/pixel-vancouver-map");
//settings are just variables that can be sent to the client from the server
//they are either related to the rooms or shared with the server
module.exports.SETTINGS = {
//if not specified by the url where is the starting point
defaultRoom: "vanMapC04",
//minimum time between talk messages enforced by both client and server
ANTI_SPAM: 1000,
//shows up at first non lurking login
INTRO_TEXT: "Click/tap to move"
};
//miscellaneous assets to preload
module.exports.IMAGES = [
["fishWalk", "fish-walk.png"],
["fishIdle", "fish-idle.png"],
["sheepIdle", "sheep-idle.png"],
["sheepWalk", "sheep-walk.png"],
["wifeWalk", "wife.png"],
["wifeEmote", "wife-emote.png"],
["husbandWalk", "husband.png"],
["husbandEmote", "husband-emote.png"],
["child1Walk", "child1.png"],
["child1Emote", "child1-emote.png"],
["child2Walk", "child2.png"],
["child2Emote", "child2-emote.png"],
["child3Walk", "child3.png"],
["child3Emote", "child3-emote.png"],
["uncleWalk", "uncle.png"],
["uncleEmote", "uncle-emote.png"],
["milkmanWalk", "milkman.png"],
["milkmanEmote", "milkman-emote.png"],
["boyfriendWalk", "child-boyfriend.png"],
["boyfriendEmote", "child-boyfriend-emote.png"],
["flyWalk", "fly.png"],
["flyEmote", "fly-emote.png"]
];
//miscellaneous sounds to preload
module.exports.SOUNDS = [
["beat1", "beat1.ogg"], //credit https://www.youtube.com/watch?v=ugLVpZm69DE
["beat2", "beat2.ogg"], // credit https://www.youtube.com/watch?v=dPdoxIz0w24
["beat3", "beat3.ogg"], //credit https://www.youtube.com/watch?v=XShEWT4MwJs
["DJStop", "DJStop.mp3"]
];
module.exports.ROOMS = {
...powellAndClark,
...stairwell,
...heartProjector,
...elevator,
...thePapercutArcade,
...pixelVancouverMap,
};