ygocore-interface
TypeScript icon, indicating that this package has built-in type declarations

0.3.2 • Public • Published

ygocore-interface

WIP ygopro-core(https://github.com/moecube/ygopro-core) api wrapper

Install

npm install ygocore-interface
npm install ygocore           # for core engine 

How to use

import { engine } from 'ygocore';
import { Duel, DEFAULT_DUEL_OPTIONS } from 'ygocore-interface';
import { inspect } from 'util';
 
// initialize the engine, see http://github.com/ghlin/node-ygocore
//
// engine.registerCard(/* ... */);
// engine.registerScript(/* ... */);
 
// create the duel
const duel = new Duel(engine, {
  players: [
    /* player 1 */{ main: [ /* main deck */ ], extra: [ /* extra deck */ ] },
    /* player 2 */{ main: [ /* main deck */ ], extra: [ /* extra deck */ ] }
  ],
  seed: 0, /* random seed */
  options: DEFAULT_DUEL_OPTIONS /* master rule 4 */
});
 
while (true) {
  const todo = duel.step();
 
  if (todo.tag === 'DUEL_FINISHED') {
    if (todo.why.tag === 'REASON_WIN') {
      // the winner is:
      const winner = todo.why.message.player;
    }
    // duel finished.
    break;
  }
 
  if (todo.tag === 'ASK_QUESTION') {
    const playerResponse = await getResponse(todo.question.player, todo.question);
    duel.feed(playerResponse);
 
    console.log(`ask player ${todo.question.player} about: ${inspect(todo.question, false, null, true)}`}
    continue;
  }
 
  // todo.tag === 'DISPATCH_PACKET'
  for (const { whom, what } of todo.packets) {
    // message 'what' will be sent to player 'whom'
    await sendMessage(whom, what);
    console.log(`tell player ${whom}: ${inspect(what, false, null, true)}`);
  }
}
 
// end duel
duel.release();

Constants defined in ocgcore/common.h are also exported:

import { DUEL, LOCATION, POS, TYPE, QUERY, LINK_MARKER /* ... */ } from 'ygocore-interface';
 
// e.g. LOCATION.HAND => LOCATION_HAND (in common.h)

TODOs

  • A playable demo
  • Handle response time-out
  • TAG duel
  • Parse replay file (.yrp)
  • Type definitions for user response
  • Documentation?

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.3.215latest

Version History

VersionDownloads (Last 7 Days)Published
0.3.215
0.3.10
0.3.00
0.2.00
0.1.10
0.1.01
0.0.20
0.0.10

Package Sidebar

Install

npm i ygocore-interface

Weekly Downloads

16

Version

0.3.2

License

MIT

Unpacked Size

327 kB

Total Files

18

Last publish

Collaborators

  • ghlin