-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFactory.php
More file actions
246 lines (198 loc) · 5.81 KB
/
Factory.php
File metadata and controls
246 lines (198 loc) · 5.81 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
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
<?php
namespace Apolune\Server;
use Illuminate\Contracts\Foundation\Application;
use Apolune\Contracts\Server\Factory as Contract;
class Factory implements Contract
{
/**
* Holds the storage path.
*
* @var string
*/
protected $path;
/**
* Holds the server data.
*
* @var array
*/
protected static $data = [];
/**
* Holds the application instance.
*
* @var \Illuminate\Contracts\Foundation\Application
*/
protected $app;
/**
* Create a new Factory instance.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @param string $path
* @return void
*/
public function __construct(Application $app, $path)
{
$this->app = $app;
$this->path = $path;
$this->load();
}
/**
* Load all of the different data files.
*
* @return void
*/
protected function load()
{
$files = ['info', 'creatures', 'genders', 'spells', 'towns', 'vocations', 'worlds', '../countries'];
foreach ($files as $file) {
$filepath = sprintf('%s/%s.json', $this->path, $file);
$identifier = preg_replace('/[^a-z]/i', null, $file);
static::$data[$identifier] = json_decode($this->app['files']->get($filepath));
}
}
/**
* Get the server name.
*
* @return string
*/
public function name()
{
return static::$data['info']->name;
}
/**
* Get all of the countries.
*
* @return \Illuminate\Support\Collection
*/
public function countries()
{
static $collection;
if (is_null($collection)) {
$collection = collect(static::$data['countries']);
}
return $collection;
}
/**
* Get all creatures.
*
* @return \Illuminate\Support\Collection
*/
public function creatures()
{
static $collection;
if (is_null($collection)) {
$creatures = static::$data['creatures'];
array_walk($creatures, function (&$creature) {
$creature = $this->app->make('server.creature', [(array) $creature]);
});
$collection = collect($creatures)->sortBy('name')->sort(function ($a, $b) {
return $a->name() > $b->name();
})->filter(function ($item) {
return ! $item->hidden();
});
}
return $collection;
}
/**
* Get all of the genders.
*
* @return \Illuminate\Support\Collection
*/
public function genders()
{
static $collection;
if (is_null($collection)) {
$genders = static::$data['genders'];
array_walk($genders, function (&$gender) {
$gender = $this->app->make('server.gender', [(array) $gender]);
});
$collection = collect($genders);
}
return $collection;
}
/**
* Get all spells.
*
* @return \Illuminate\Support\Collection
*/
public function spells()
{
static $collection;
if (is_null($collection)) {
$types = static::$data['spells'];
foreach ($types as $type => $spells) {
array_walk($spells, function (&$spell, $name) use ($type) {
$spell = $this->app->make('server.spell', [$name, $type, (array) $spell]);
});
}
$result = [];
foreach ($types as $type) {
$result = array_merge($result, (array) $type);
}
$collection = collect($result)->sortBy('name')->sort(function ($a, $b) {
return $a->name() > $b->name();
})->filter(function ($item) {
return ! $item->hidden();
});
}
return $collection;
}
/**
* Get all of the towns.
*
* @param boolean $starter null
* @return \Illuminate\Support\Collection
*/
public function towns($starter = null)
{
static $collection;
if (is_null($collection)) {
$towns = static::$data['towns'];
array_walk($towns, function (&$town) {
$town = $this->app->make('server.town', [(array) $town]);
});
$collection = collect($towns)->reject(function ($town) use ($starter) {
return $starter and ! $town->isStarter();
});
$collection = $collection->count() > 0 ? $collection : $collection->push(head($towns));
}
return $collection;
}
/**
* Get all of the vocations.
*
* @param boolean $starter null
* @return \Illuminate\Support\Collection
*/
public function vocations($starter = null)
{
static $collection;
if (is_null($collection)) {
$vocations = static::$data['vocations'];
array_walk($vocations, function (&$vocation) {
$vocation = $this->app->make('server.vocation', [(array) $vocation]);
});
$collection = collect($vocations)->reject(function ($vocation) use ($starter) {
return $starter and ! $vocation->isStarter();
});
$collection = $collection->count() > 0 ? $collection : $collection->push(head($vocations));
}
return $collection;
}
/**
* Get all of the worlds.
*
* @return \Illuminate\Support\Collection
*/
public function worlds()
{
static $collection;
if (is_null($collection)) {
$worlds = static::$data['worlds'];
array_walk($worlds, function (&$world) {
$world = $this->app->make('server.world', [(array) $world]);
});
$collection = collect($worlds);
}
return $collection;
}
}