mirror of
https://github.com/fghrsh/live2d_api.git
synced 2024-11-22 10:40:02 +08:00
53 lines
2.0 KiB
PHP
53 lines
2.0 KiB
PHP
<?php
|
|
isset($_GET['id']) ? $id = $_GET['id'] : exit('error');
|
|
|
|
require '../tools/modelList.php';
|
|
require '../tools/modelTextures.php';
|
|
|
|
$modelList = new modelList();
|
|
$modelTextures = new modelTextures();
|
|
|
|
$id = explode('-', $id);
|
|
$modelId = (int)$id[0];
|
|
$modelTexturesId = isset($id[1]) ? (int)$id[1] : 0;
|
|
|
|
$modelName = $modelList->id_to_name($modelId);
|
|
|
|
if (is_array($modelName)) {
|
|
$modelName = $modelTexturesId > 0 ? $modelName[$modelTexturesId-1] : $modelName[0];
|
|
$json = json_decode(file_get_contents('../model/'.$modelName.'/index.json'), 1);
|
|
} else {
|
|
$json = json_decode(file_get_contents('../model/'.$modelName.'/index.json'), 1);
|
|
if ($modelTexturesId > 0) {
|
|
$modelTexturesName = $modelTextures->get_name($modelName, $modelTexturesId);
|
|
if (isset($modelTexturesName)) $json['textures'] = is_array($modelTexturesName) ? $modelTexturesName : array($modelTexturesName);
|
|
}
|
|
}
|
|
|
|
$textures = json_encode($json['textures']);
|
|
$textures = str_replace('texture', '../model/'.$modelName.'/texture', $textures);
|
|
$textures = json_decode($textures, 1);
|
|
$json['textures'] = $textures;
|
|
|
|
$json['model'] = '../model/'.$modelName.'/'.$json['model'];
|
|
if (isset($json['pose'])) $json['pose'] = '../model/'.$modelName.'/'.$json['pose'];
|
|
if (isset($json['physics'])) $json['physics'] = '../model/'.$modelName.'/'.$json['physics'];
|
|
|
|
if (isset($json['motions'])) {
|
|
$motions = json_encode($json['motions']);
|
|
$motions = str_replace('sounds', '../model/'.$modelName.'/sounds', $motions);
|
|
$motions = str_replace('motions', '../model/'.$modelName.'/motions', $motions);
|
|
$motions = json_decode($motions, 1);
|
|
$json['motions'] = $motions;
|
|
}
|
|
|
|
if (isset($json['expressions'])) {
|
|
$expressions = json_encode($json['expressions']);
|
|
$expressions = str_replace('expressions', '../model/'.$modelName.'/expressions', $expressions);
|
|
$expressions = json_decode($expressions, 1);
|
|
$json['expressions'] = $expressions;
|
|
}
|
|
|
|
header("Content-type: application/json");
|
|
echo json_encode($json, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT);
|