-
Notifications
You must be signed in to change notification settings - Fork 0
/
grammar.js
253 lines (245 loc) · 6.07 KB
/
grammar.js
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
var grammar = tracery.createGrammar({
// A generated result can be either a phrase or a single word, but, either way, it must have an affix, for the sake of making it interesting.
origin: ['#affixedPhrase#', '#affixedPhrase#', '#affixedWord#'],
// An affixed phrase always has a prefix and may also have a suffix. The prefix may be an actual prefix or a possibly affixed word.
affixedPhrase: '#prefixedPhrase##maybePhraseSuffix#',
prefixedPhrase: '#phrasePrefixingWord# #maybeAffixedWord#',
phrasePrefixingWord: ['#phrasePrefix#', '#maybeAffixedWord#'],
maybeAffixedWord: ['#affixedWord#', '#affixedWord#', '#genre#'],
maybePhraseSuffix: ['', '', '', '', '#_maybePhraseSuffix#'],
_maybePhraseSuffix: ['', '', '', '', ' #phraseSuffix#'],
// An affixed word has either a prefix or a suffix but not both, in order to avoid words that are too dense to comfortably read.
affixedWord: ['#prefixedWord#', '#_affixedWord#'],
_affixedWord: ['#prefixedWord#', '#prefixedWord#', '#suffixedWord#'],
prefixedWord: '#wordPrefix.shy##prefixableWord#',
prefixableWord: '#genre#',
suffixedWord: '#suffixableWord#­#wordSuffix#',
suffixableWord: ['#genre#', '#genre#', '#suffixableNonGenre#'],
suffixableNonGenre: ['#phrasePrefix#', '#wordPrefix#'],
// A genre is a core element, a real-world aesthetic that *could* stand alone to name an aesthetic, but will be modified by word and phrase affixes to form a more *interesting* aesthetic name.
genre: [
'biker',
'butch',
'clown',
'cosplay',
'cowboy',
'disco',
'dragon',
'emo',
'fairy',
'farmer',
'folk',
'funk',
'furry',
'gamer',
'#geek#',
'glitch',
'goth',
'grunge',
'hacker',
'hip hop',
'hippie',
'hipster',
'jock',
'larper',
'librarian',
'metal',
'monster',
'noir',
'pirate',
'prep',
'#princex#',
'punk',
'raver',
'ska',
'skater',
'taur',
'teacher',
'trucker',
'twink',
'witch',
'#movementGenre#',
],
geek: [
'geek',
'nerd',
'otaku',
],
princex: [
'princex',
'princess',
'prince',
],
movementGenre: [
'baroque',
'brutalist',
'classical',
'cubist',
'dadaist',
'modernist',
'realist',
'surrealist',
],
// A phrase prefix is a word that can modify an aesthetic and is similar to a genre but can't stand alone like a genre can. Sometimes this distinction is arbitrary, and the word *could* sensibly stand alone as a genre, but we would rather not generate it as such.
phrasePrefix: [
'8-bit',
'abstract',
'art',
'ballroom',
'beach',
'bespoke',
'bubblegum',
'business',
'candy',
'carnival',
'crypt',
'dark',
'death',
'deep',
'disaster',
'doom',
'evening',
'experimental',
'fairytale',
'fantasy',
'forest',
'future',
'glam',
'hard',
'health',
'hell',
'horror',
'industrial',
'lesbian',
'liquid',
'magic',
'math',
'medical',
'minimal',
'myth',
'nature',
'neon',
'nu',
'operatic',
'pajama',
'pasta',
'pastel',
'postapocalypse',
'power',
'psychedelic',
'rainbow',
'sci-fi',
'soft',
'spicy',
'swamp',
'symphonic',
'#toon#',
'#decadePhrasePrefix#',
'#geographicPhrasePrefix#',
'#properPhrasePrefix#',
],
toon: [
'toon',
'anime',
],
decadePhrasePrefix: [
'70s',
'80s',
'90s',
],
geographicPhrasePrefix: [
'Celtic',
'Euro',
'French',
'Italo',
'Latin',
'Martian',
'New England',
'Scandinavian',
'Southern',
'Texas',
'Viking',
],
properPhrasePrefix: [
'Disney',
'Hollywood',
'Instagram',
'Neopet',
'Nintendo',
],
phraseSuffix: [
'#DX#',
'kei',
],
DX: [
'DX',
'EX',
],
// A word prefix is joined directly to the beginning of a word without any spaces to modify it. Sometimes the distinction between this and a phrase prefix is arbitrary, and the prefix is an actual dictionary word, but we would rather join it without spaces to another word.
wordPrefix: [
'acid',
'astro',
'bio',
'care',
'chill',
'choco',
'crypto',
'cyber',
'e-',
'electro',
'endo',
'enviro',
'fem',
'fuck',
'fur',
'glow',
'gore',
'holo',
'infra',
'jump',
'litho',
'macro',
'mecha',
'mer',
'meta',
'mono',
'nano',
'neo',
'night',
'norm',
'post',
'pre',
'proto',
'pseudo',
'retro',
'sea',
'semi',
'steam',
'synth',
'techno',
'trans',
'vapor',
'#geographicWordPrefix#',
],
geographicWordPrefix: [
'Afro',
'Brit',
'J-',
'K-',
],
// A word prefix is joined directly to the end of a word without any spaces to modify it. Usually this just adds slight flavoring to the word, although some of them can be very suggestive.
wordSuffix: [
'beat',
'core',
'dance',
'fuck',
'gaze',
'pop',
'punk',
'style',
'wave',
],
})
grammar.modifiers.shy = function (string) {
return string + (string.endsWith('-') ? '' : '­')
}