Giter Site home page Giter Site logo

character-parser's Introduction

Character Parser

A simple parser to aid in the loading of Character files.

Note: This is not meant to increase use of this character file format, it is still best to use a serializable format like xml, json, or binary. This library is to make creation of tools to possibly migrate or edit existing files easier.

An example character file would be:

[ACCOUNT]
character-name = TEST
character-password = test

[BANK]
character-bank = 0 1 2
character-bank1 = 0 1 2

[ITEMS]
character-item = 0 1 2
character-item = 0 1 2

This parser converts that into Sections which you may get by name to parse them.

Example:

CharacterFile ch = CharacterFileParser.parse(new File("character.txt"));

Section account = ch.getSection("account");

for (Map.Entry<String, List<String>> entry : account.getValues().entrySet()) {
	System.out.println("Entry name: " + entry.getKey());
	System.out.println("Entry values: " + entry.getValue();
}

You can also parse only certain sections of the file, like so:

CharacterFile ch = CharacterFileParser.parse(new File("character.txt"), new SectionNameFilter("account", "items"));

Section account = ch.getSection("account");

for (Map.Entry<String, List<String>> entry : account.getValues().entrySet()) {
	System.out.println("Entry name: " + entry.getKey());
	System.out.println("Entry values: " + entry.getValue();
}

Or if you wanted to loop all sections:

CharacterFile ch = CharacterFileParser.parse(new File("character.txt"));

for (Section section : ch.getSections()) {
	switch (section.getName()) {
		case "ACCOUNT":
			break;
		case "BANK":
			break;
		case "ITEMS":
			break;
	}
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.