Parsing logic for Pokémon Showdown's PROTOCOL and SIM-PROTOCOL
npm install @pkmn/protocol@pkmn/protocol!Test Status
!License

Parsing logic for Pokémon Showdown's
PROTOCOL and
SIM-PROTOCOL.
This package converts Pokémon Showdown's text protocols into typed object
representations for ease of use.
``sh`
$ npm install @pkmn/protocol
Alternatively, as detailed below, if you are using @pkmn/protocol in the browser and
want a convenient way to get started, simply depend on a transpiled and minified version via
unpkg:
`html`
#### Handler
Protocol.parse can be used to turn protocol messages into objects which can then be dispatched toProtocol.Handler
a . The Args and KWArgs can be parsed further using the various helper methodsProtocol
available on the class. @pkmn/client'sHandler exists as a detailed example of what a Protocol.Handler
implementation might look like.
`ts
import {Protocol, Args, KWArgs} from '@pkmn/protocol';
class BoostHandler implements Protocol.Handler {
'|-boost|'(args: Args['|-boost|'], kwArgs: KWArgs['|-boost|']) {
const [, p, stat, n] = args;
const pokemon = Prototol.parsePokemonIdent(p);
const num = Number(n);
let message = ${pokemon.player}'s ${pokemon.name}'s ${stat} stat was boosted by ${num}; from ${Protocol.parseEffect(from).name}
if (kwArgs.from) message += ;${message}!
console.log();`
}
}
The generate-handler script can be used to reduce amount of boilerplate code
required to exhaustively implement the Pokémon Showdown protocol.
#### Verifier
@pkmn/protocol also provides protocol-verification logic, primarily useful for testing.Verifier.verify can be used to verify a data chunk received from the Pokémon Showdown serverVerifier.verifyLine
( can be used to verify individual lines). The Verifier only performs basicID
strutural/shape verification (eg. the protocol is well-formed) as opposed to fine grained
domain-specific verification (ie. it will verify an is received, but does not verify that theID refers to a known object etc).
`ts
import {Verifier} from '@pkmn/protocol/verifier'
console.log(Verifier.verify(protocol));
`
The TypeScript compiler may require special configuration to be able to directly import a
subdirectory of the main @pkmn/protocol package - see thetsconfig.json documentation onbaseUrl andpaths.
`json`
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@pkmn/protocol/": ["node_modules/@pkmn/protocol/build/"]
}
}
}
This package ships with a protocol-verifier script which can be used to
verify protocol lines read from standard input.
The recommended way of using @pkmn/protocol in a web browser is to configure your bundlerindex.min.js
(Webpack, Rollup,
Parcel, etc) to minimize it and package it with the rest of your
application. If you do not use a bundler, a convenience is included in the package../node_modules/@pkmn/protocol/build/index.min.js
You simply need to depend on in a script tagpkmn.protocol` will be accessible
(which is what the unpkg shortcut above is doing), after which **
as a global.**
This package is distributed under the terms of the MIT License. Parts of the code have
been derived from the Pokémon Showdown server and the
MIT Licensed
portions of the client.