mirror of
https://gitea.tendokyu.moe/eamuse/docs.git
synced 2024-12-13 23:11:03 +01:00
126 lines
4.0 KiB
HTML
126 lines
4.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>e-Amusement API</title>
|
|
|
|
<link rel="stylesheet" href="../styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<table>
|
|
<tr>
|
|
<td><a href="..">Contents</a></td>
|
|
<td><a href="../transport.html">Transport layer</a></td>
|
|
<td><a href="../packet.html">Packet format</a></td>
|
|
<td><a href="../protocol.html">Application Protocol</a></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h1><code>system</code></h1>
|
|
<h2 id="getmaster"><code>system.getmaster</code></h2>
|
|
<h3>Request:</h3>
|
|
<pre><code><call <i>...</i>>
|
|
<system method="getmaster">
|
|
<data>
|
|
<gamekind __type="str" />
|
|
<datatype __type="str" />
|
|
<datakey __type="str" />
|
|
</data>
|
|
</system>
|
|
</call></code></pre>
|
|
<h3>Response:</h3>
|
|
<pre><code><response>
|
|
<system status="<i>status</i>">
|
|
<result __type="s32" />
|
|
<strdata1 __type="str" />
|
|
<strdata2 __type="str" />
|
|
<updatedate __type="u64" />
|
|
</system>
|
|
</response></code></pre>
|
|
|
|
<h2 id="getlocationiplist"><code>system.getlocationiplist</code></h2>
|
|
<h3>Request:</h3>
|
|
<pre><code><call <i>...</i>>
|
|
<system method="getlocationiplist">
|
|
<data>
|
|
<locationid __type="str" />
|
|
<lineid __type="str" />
|
|
</data>
|
|
</system>
|
|
</call></code></pre>
|
|
<h3>Response:</h3>
|
|
<pre><code><response>
|
|
<system status="<i>status</i>">
|
|
<result __type="s32" />
|
|
<iplist>
|
|
<record_num __type="s32" />
|
|
<record[]>
|
|
<localconn __type="str" />
|
|
</record[]>
|
|
</iplist>
|
|
</system>
|
|
</response></code></pre>
|
|
|
|
<h2 id="xrpcproxy"><code>system.xrpcproxy</code></h2>
|
|
<h3>Request:</h3>
|
|
<pre><code><call <i>...</i>>
|
|
<system method="xrpcproxy">
|
|
<info>
|
|
<version __type="s32" />
|
|
</info>
|
|
<data>
|
|
<hostid __type="s64" />
|
|
<locationid __type="str" />
|
|
<lineid __type="str" />
|
|
</data>
|
|
</system>
|
|
</call></code></pre>
|
|
<h3>Response:</h3>
|
|
<pre><code><response>
|
|
<system status="<i>status</i>">
|
|
<result __type="s32" />
|
|
<pwrtime __type="s32" />
|
|
<matchlist>
|
|
<record_num __type="u32" />
|
|
<record[]>
|
|
<pcbid __type="str" />
|
|
<statusflg __type="str" />
|
|
<matchgrp __type="s32" />
|
|
<hostid __type="s64" />
|
|
<jointime __type="u64" />
|
|
<connip_g __type="str" />
|
|
<connport_g __type="s32" />
|
|
<connip_l __type="str" />
|
|
<connport_l __type="s32" />
|
|
</record[]>
|
|
</matchlist>
|
|
</system>
|
|
</response></code></pre>
|
|
|
|
<h2 id="convcardnumber"><code>system.convcardnumber</code></h2>
|
|
<h3>Request:</h3>
|
|
<pre><code><call <i>...</i>>
|
|
<system method="convcardnumber">
|
|
<info>
|
|
<version __type="s32" />
|
|
</info>
|
|
<data>
|
|
<card_id __type="str" />
|
|
<card_type __type="s32" />
|
|
</data>
|
|
</system>
|
|
</call></code></pre>
|
|
<h3>Response:</h3>
|
|
<pre><code><response>
|
|
<system status="<i>status</i>">
|
|
<result __type="s32" />
|
|
<data>
|
|
<card_number __type="str" />
|
|
</data>
|
|
</system>
|
|
</response></code></pre>
|
|
</body> |