Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F883174
Galaxy.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
Galaxy.php
View Options
<?php
/**
* Geo galaxy class.
*
* Zed. The immensity of stars. The HyperShip. The people.
*
* (c) 2010, Dereckson, some rights reserved.
* Released under BSD license.
*
* A 3D grid of objects
*
* 0.1 2010-02-08 14:02 Initial version [DcK]
* 0.2 2010-07-25 9:20 Spherical conversion, get objects
*
* @package Zed
* @subpackage Geo
* @author Sébastien Santoro aka Dereckson <dereckson@espace-win.org>
* @copyright 2010 Sébastien Santoro aka Dereckson
* @license http://www.opensource.org/licenses/bsd-license.php BSD
* @version 0.1
* @link http://scherzo.dereckson.be/doc/zed
* @link http://zed.dereckson.be/
* @filesource
*/
namespace
Zed\Models\Geo
;
use
Hypership\Geo\Point3D
;
use
Keruald\Database\DatabaseEngine
;
/**
* Geo galaxy class
*/
class
Galaxy
{
/*
* ----------------------------------------------------------------------- *
* Objects fetchers
* ----------------------------------------------------------------------- *
*/
/**
* Gets all the coordinates of the objects in the galaxy.
*
* @return array An array of array. Each item is [string object_name, string object_type, Point3D coordinates]
*/
static
function
getCoordinates
(
DatabaseEngine
$db
)
{
$sql
=
"SELECT object_name as `name`, object_type as `type`, object_location as location FROM geo_coordinates"
;
if
(!
$result
=
$db
->
query
(
$sql
))
{
message_die
(
SQL_ERROR
,
"Can't query geo_coordinates view."
,
''
,
__LINE__
,
__FILE__
,
$sql
);
}
$objects
=
[];
while
(
$row
=
$db
->
fetchRow
(
$result
))
{
//Demios ship xyz: [-50, 30, 40]
//Kaos asteroid xyz: [150, -129, 10]
$row
[
"location"
]
=
Point3D
::
fromString
(
$row
[
"location"
]);
$objects
[]
=
$row
;
}
return
$objects
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Apr 4, 08:12 (6 h, 49 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
21390
Default Alt Text
Galaxy.php (1 KB)
Attached To
rZED Zed
Event Timeline
Log In to Comment