<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://159.203.101.162/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rizzen</id>
	<title>PCGen Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://159.203.101.162/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rizzen"/>
	<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php/Special:Contributions/Rizzen"/>
	<updated>2026-04-04T10:47:43Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Talk:Complete_overhaul_of_PCGen_from_Java&amp;diff=4086</id>
		<title>Talk:Complete overhaul of PCGen from Java</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Talk:Complete_overhaul_of_PCGen_from_Java&amp;diff=4086"/>
		<updated>2018-01-03T07:06:29Z</updated>

		<summary type="html">&lt;p&gt;Rizzen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span style=&amp;quot;color:blue&amp;quot;&amp;gt;Comments by Rizzen&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Base==&lt;br /&gt;
Steps to PCGen current process -&lt;br /&gt;
&lt;br /&gt;
* Load PCGen&lt;br /&gt;
* This causes it to look at the GameSystem folder and validate/add those to an available Load list&lt;br /&gt;
* UI starts and user can select Game System and then associated books with that system&lt;br /&gt;
* Upon Load, data is validated and stored in memory&lt;br /&gt;
* User can load existing PC, or create a new PC&lt;br /&gt;
&lt;br /&gt;
Problem points:&lt;br /&gt;
* All Data is loaded and stored in existing memory - uses available RAM allocated by Java&lt;br /&gt;
* EXE version doesn't do well with memory for reloads&lt;br /&gt;
&lt;br /&gt;
Solutions:&lt;br /&gt;
* Possibly use SQL DB.&lt;br /&gt;
&lt;br /&gt;
JEP - Obsolete System&lt;br /&gt;
* We use JEP to handle vars&lt;br /&gt;
&lt;br /&gt;
Problem points:&lt;br /&gt;
* JEP is a grandfathered library&lt;br /&gt;
* Current implementation treats all vars as PC Global&lt;br /&gt;
* Different systems would need the ability to have vars on equipment, pc, and various other objects&lt;br /&gt;
&lt;br /&gt;
Solutions:&lt;br /&gt;
* Could scripting language replace this system?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Homebrew Support:&lt;br /&gt;
* PCGen uses flat text files called LST to facilitate books - each lst file is associated with different sections of a book or objects - i.e. Races, Classes, Kits, Alignment, Abilities aka Stats, Features aka Abilities, Sizes, proficiencies, equipment, equipment modifications, engine specific (data, tables, game system rules, house rules, etc) &lt;br /&gt;
* OGL requires Human Readable data (Though it can be interpreted or translated into something else during use)&lt;br /&gt;
&lt;br /&gt;
Problem Points:&lt;br /&gt;
* LST Files, although not hard to edit, do not come naturally to most users. The end goal is to include a smart editor to add in custom content.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==User Interface==&lt;br /&gt;
* Use XML files to construct UI for the various game system, and extension source books have additional XML to add additional tabs and fields. This way prevent UI from being hardcoded. Engine does not need to know about UI until game system is selected.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Languages for engines==&lt;br /&gt;
Possible options:&lt;br /&gt;
* C#, #GTK, CS-Script:&lt;br /&gt;
** Mono CLR (available on Windows, Linux and Mac OS X) and Mono is supported by Microsoft, including support for Mono natively in CS-Script.&lt;br /&gt;
** Seen as memory safe, with built-in memory management in the CLR run-time.&lt;br /&gt;
** Using only GTK# for GUI may result in a single build for all platforms, but native look &amp;amp; feel only possible on Gnome 2.0 desktop.&lt;br /&gt;
** There is a built-in ODBC connector in C#, though there is a ADO C# MySQL connector that supports MySQL and MariaDB.&lt;br /&gt;
** CS-Script is a hybrid between C# and ECMA Script (Javascript) with strong variable types.&lt;br /&gt;
&lt;br /&gt;
* C++, wxWidgets, ChaiScript, CMake:&lt;br /&gt;
** wxWidgets supports Windows, Linux and Mac OS X using native look &amp;amp; feel for each platform.&lt;br /&gt;
** Remember to do proper memory management.&lt;br /&gt;
** There is C library for connecting directly to MariaDB, and C library for MySQL that can be used for both DB types.&lt;br /&gt;
** ChaiScript is a scripting language especially made for C++.&lt;br /&gt;
** Cross platform build system, and is natively support in Visual Studio 2017, and QtCreator.&lt;br /&gt;
&lt;br /&gt;
C# has been touted as a safer language to pursue. It has compilers for any system, although C++ has iOS support.&lt;br /&gt;
There are examples of CMake being used for C# projects, considering Mono and MonoDevelop themselves are built using CMake.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Darin's Suggestions ==&lt;br /&gt;
Using an SQL DB for has some advantages over plain text. However, it has some disadvantages as well.&lt;br /&gt;
* DBs don't fit into git very well. &amp;lt;span style=&amp;quot;color:blue&amp;quot;&amp;gt;No need to store DB in GIT, create DB on first run of PCGen and populate with chosen sources data files.&amp;lt;/span&amp;gt;&lt;br /&gt;
* DBs' PRs don't fit into git very well (user pull requests).&lt;br /&gt;
* Plain text is easier to diff. &amp;lt;span style=&amp;quot;color:blue&amp;quot;&amp;gt;Can do the diff on the DB input files (JSON, YAML, or XML)&amp;lt;/span&amp;gt;&lt;br /&gt;
* DBs encourage you to read only the data you need, when you need it, and to discard data you no longer require, keeping the memory usage down. &amp;lt;span style=&amp;quot;color:blue&amp;quot;&amp;gt;Depends how you use DB results, discard or keep in memory, I think both would happen. Just needed part of source remains in memory, while the huge bulk remains in DB.&amp;lt;/span&amp;gt;&lt;br /&gt;
** This can be emulated with wrappers around the text file reader which only return requested data.&lt;br /&gt;
*** This would likely require some level of indexing (like a DB would use).&lt;br /&gt;
&lt;br /&gt;
I would suggest having text files in git, and building the DB from there if you must use a DB.  You may want to look at SQLite as your DB of choice because it provides you with most of what you need without adding dependencies on the user (how many Windows users have MySQL or MariaDB installed?).  Add other-DB support later if there is any benefit. &amp;lt;span style=&amp;quot;color:blue&amp;quot;&amp;gt;SQLite is a good choice too, considering use of DB would primary be reading, with character writing into DB.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Caveats to using a DB:&lt;br /&gt;
* You may be tempted to store characters in the DB. This is fine. However, an export method (back to plain text that can be imported to a new db) would be required. And the import for this would need to be able to both overwrite and coexist with existing characters - I may want my player to send me his/her character, but I don't necessarily want to lose the old version.  Deleting the character from the DB, and all its corresponding entries (equipment, etc.) would also be required.  Unless the character only lives in separate files as it does today. &amp;lt;span style=&amp;quot;color:blue&amp;quot;&amp;gt;That could be supported, when writing the parser to import data in DB, the easier serializer is created at same time (and would also be used as unit testing for parser).&amp;lt;/span&amp;gt;&lt;br /&gt;
* Upgrading a db with new versions of, say, BahamutDragon's data set, would have to be able to manage adding, modifying, and deleting old information. Most likely, this means that every piece of information has to be tagged with its source somehow, and then delete everything with those tags prior to inserting the current data. And all this has to be in a single transaction if there are foreign keys (e.g., a character referring to equipment or spells or what have you, enforced by the DB) because otherwise the delete will fail. The transaction log could get very large. Or you go without db-enforced foreign keys, which could leave surprises in dangling character fields (pointing at spells or equipment that don't exist anymore). This means that validation would be done by pcgen again on every load. Of course, if characters aren't in the db, that may mitigate that potentiality, but it doesn't exclude homebrew sets that may be based on BD's data set being broken by a new version of data. &amp;lt;span style=&amp;quot;color:blue&amp;quot;&amp;gt;The DB would be multi table making use of index referencing, that would allow to retrieve source data for every entry in the various tables of DB. Also characters storing only references to used data, thus characters would be validated on loading, or changes.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
List file format:&lt;br /&gt;
* If someone may be editing this by hand, xml gets very verbose, and may not be ideal.&lt;br /&gt;
* JSON and YAML are practically interchangeable, but YAML is probably easier to edit by hand.&lt;br /&gt;
* YAML is probably closer to what we ended up with. &amp;lt;span style=&amp;quot;color:blue&amp;quot;&amp;gt;I also agree on YAML, which I have used a few times, but forgot to mention in Hipchat discussions.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Maybe something like this. It'll take up more vertical space, but much less horizontal. (I don't fully understand everything in the current LST format, so I may be misstating some of this.)&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
Skills:&lt;br /&gt;
  - Appraise:&lt;br /&gt;
    KeyStat: INT&lt;br /&gt;
    Type:&lt;br /&gt;
      - Intelligence&lt;br /&gt;
      - Standard&lt;br /&gt;
      - Base&lt;br /&gt;
      - Appraise&lt;br /&gt;
    SourcePage: SkillsI&lt;br /&gt;
  - Bluff:&lt;br /&gt;
    KeyStat: CHA&lt;br /&gt;
    Type:&lt;br /&gt;
      - Charisma&lt;br /&gt;
      - Standard&lt;br /&gt;
      - Base&lt;br /&gt;
      - Bluff&lt;br /&gt;
    SourcePage: SkillsI&lt;br /&gt;
    Bonus:&lt;br /&gt;
      - Skill:&lt;br /&gt;
        - Sleight of Hand&lt;br /&gt;
        - Diplomacy&lt;br /&gt;
        - Intimidate&lt;br /&gt;
      - SynergyBonus&lt;br /&gt;
        - TYPE:Synergy.STACK&lt;br /&gt;
      - PreSkill:&lt;br /&gt;
        - Bluff: 5&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
--[[User:Tanktalus|Tanktalus]] ([[User talk:Tanktalus|talk]]) 06:10, 3 January 2018 (UTC)&lt;/div&gt;</summary>
		<author><name>Rizzen</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Talk:Complete_overhaul_of_PCGen_from_Java&amp;diff=4084</id>
		<title>Talk:Complete overhaul of PCGen from Java</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Talk:Complete_overhaul_of_PCGen_from_Java&amp;diff=4084"/>
		<updated>2018-01-02T13:34:52Z</updated>

		<summary type="html">&lt;p&gt;Rizzen: /* Base */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Base==&lt;br /&gt;
Steps to PCGen current process -&lt;br /&gt;
&lt;br /&gt;
* Load PCGen&lt;br /&gt;
* This causes it to look at the GameSystem folder and validate/add those to an available Load list&lt;br /&gt;
* UI starts and user can select Game System and then associated books with that system&lt;br /&gt;
* Upon Load, data is validated and stored in memory&lt;br /&gt;
* User can load existing PC, or create a new PC&lt;br /&gt;
&lt;br /&gt;
Problem points:&lt;br /&gt;
* All Data is loaded and stored in existing memory - uses available RAM allocated by Java&lt;br /&gt;
* EXE version doesn't do well with memory for reloads&lt;br /&gt;
&lt;br /&gt;
Solutions:&lt;br /&gt;
* Possibly use SQL DB.&lt;br /&gt;
&lt;br /&gt;
JEP - Obsolete System&lt;br /&gt;
* We use JEP to handle vars&lt;br /&gt;
&lt;br /&gt;
Problem points:&lt;br /&gt;
* JEP is a grandfathered library&lt;br /&gt;
* Current implementation treats all vars as PC Global&lt;br /&gt;
* Different systems would need the ability to have vars on equipment, pc, and various other objects&lt;br /&gt;
&lt;br /&gt;
Solutions:&lt;br /&gt;
* Could scripting language replace this system?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Homebrew Support:&lt;br /&gt;
* PCGen uses flat text files called LST to facilitate books - each lst file is associated with different sections of a book or objects - i.e. Races, Classes, Kits, Alignment, Abilities aka Stats, Features aka Abilities, Sizes, proficiencies, equipment, equipment modifications, engine specific (data, tables, game system rules, house rules, etc) &lt;br /&gt;
* OGL requires Human Readable data (Though it can be interpreted or translated into something else during use)&lt;br /&gt;
&lt;br /&gt;
Problem Points:&lt;br /&gt;
* LST Files, although not hard to edit, do not come naturally to most users. The end goal is to include a smart editor to add in custom content.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==User Interface==&lt;br /&gt;
* Use XML files to construct UI for the various game system, and extension source books have additional XML to add additional tabs and fields. This way prevent UI from being hardcoded. Engine does not need to know about UI until game system is selected.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Languages for engines==&lt;br /&gt;
Possible options:&lt;br /&gt;
* C#, #GTK, CS-Script:&lt;br /&gt;
** Mono CLR (available on Windows, Linux and Mac OS X) and Mono is supported by Microsoft, including support for Mono natively in CS-Script.&lt;br /&gt;
** Seen as memory safe, with built-in memory management in the CLR run-time.&lt;br /&gt;
** Using only GTK# for GUI may result in a single build for all platforms, but native look &amp;amp; feel only possible on Gnome 2.0 desktop.&lt;br /&gt;
** There is a built-in ODBC connector in C#, though there is a ADO C# MySQL connector that supports MySQL and MariaDB.&lt;br /&gt;
** CS-Script is a hybrid between C# and ECMA Script (Javascript) with strong variable types.&lt;br /&gt;
&lt;br /&gt;
* C++, wxWidgets, ChaiScript, CMake:&lt;br /&gt;
** wxWidgets supports Windows, Linux and Mac OS X using native look &amp;amp; feel for each platform.&lt;br /&gt;
** Remember to do proper memory management.&lt;br /&gt;
** There is C library for connecting directly to MariaDB, and C library for MySQL that can be used for both DB types.&lt;br /&gt;
** ChaiScript is a scripting language especially made for C++.&lt;br /&gt;
** Cross platform build system, and is natively support in Visual Studio 2017, and QtCreator.&lt;br /&gt;
&lt;br /&gt;
C# has been touted as a safer language to pursue. It has compilers for any system, although C++ has iOS support.&lt;br /&gt;
There are examples of CMake being used for C# projects, considering Mono and MonoDevelop themselves are built using CMake.&lt;/div&gt;</summary>
		<author><name>Rizzen</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Complete_overhaul_of_PCGen_from_Java&amp;diff=4081</id>
		<title>Complete overhaul of PCGen from Java</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Complete_overhaul_of_PCGen_from_Java&amp;diff=4081"/>
		<updated>2018-01-01T06:59:01Z</updated>

		<summary type="html">&lt;p&gt;Rizzen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the place for ideas, discussion results and progress related to the long term goal of converting PCGen from being a Java based application to using another cross platform language(s) and libraries.&lt;br /&gt;
&lt;br /&gt;
As discussions take place and progress is made additional pages will be created and linked here, thus keeping all the related content together.&lt;br /&gt;
&lt;br /&gt;
There is also an opportunity to also change data file formats, while new engine is being developed. New engine will also have all existing hard coded game mechanic data and code removed, to truly make PCGen engine game system agnostic, and also allow for campaign settings and house rules to easily alter mechanics of the base system so characters are complete in terms of the setting and/or house rules being used.&lt;br /&gt;
&lt;br /&gt;
Currently no major version will be assigned during the duration of converting from Java. Major version number will be assigned when new code base engine is ready for beta and release.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Engine ==&lt;br /&gt;
* Current proposal is to use C# as main application language.&lt;br /&gt;
* Possible use embedded scripting language to provide game system mechanics it's logical functionality, which would allow on the fly easy to change rules, as no rule or data is hard coded into the engine. Current thoughts is Python or Lua, though maybe another.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Data file formats ==&lt;br /&gt;
* Using XML or JSON for data files (requires a redesign of the current LST format).&lt;br /&gt;
* [[Character Data Store]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Other ==&lt;br /&gt;
* Possible use of MySQL (or another supported open source SQL database).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributors ==&lt;br /&gt;
Rizzen&lt;/div&gt;</summary>
		<author><name>Rizzen</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Complete_overhaul_of_PCGen_from_Java&amp;diff=4080</id>
		<title>Complete overhaul of PCGen from Java</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Complete_overhaul_of_PCGen_from_Java&amp;diff=4080"/>
		<updated>2017-12-31T10:27:58Z</updated>

		<summary type="html">&lt;p&gt;Rizzen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the place for ideas, discussion results and progress related to the long term goal of converting PCGen from being a Java based application to using another cross platform language(s) and libraries.&lt;br /&gt;
&lt;br /&gt;
As discussions take place and progress is made additional pages will be created and linked here, thus keeping all the related content together.&lt;br /&gt;
&lt;br /&gt;
There is also an opportunity to also change data file formats, while new engine is being developed. New engine will also have all existing hard coded game mechanic data and code removed, to truly make PCGen engine game system agnostic, and also allow for campaign settings and house rules to easily alter mechanics of the base system so characters are complete in terms of the setting and/or house rules being used.&lt;br /&gt;
&lt;br /&gt;
Currently no major version will be assigned during the duration of converting from Java. Major version number will be assigned when new code base engine is ready for beta and release.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Engine ==&lt;br /&gt;
* Current proposal is to use C# as main application language.&lt;br /&gt;
* Possible use embedded scripting language to provide game system mechanics it's logical functionality, which would allow on the fly easy to change rules, as no rule or data is hard coded into the engine. Current thoughts is Python or Lua, though maybe another.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Data file formats ==&lt;br /&gt;
* Using XML or JSON for data files (requires a redesign of the current LST format).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Other ==&lt;br /&gt;
* Possible use of MySQL (or another supported open source SQL database).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributors ==&lt;br /&gt;
Rizzen&lt;/div&gt;</summary>
		<author><name>Rizzen</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Complete_overhaul_of_PCGen_from_Java&amp;diff=4079</id>
		<title>Complete overhaul of PCGen from Java</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Complete_overhaul_of_PCGen_from_Java&amp;diff=4079"/>
		<updated>2017-12-31T10:25:59Z</updated>

		<summary type="html">&lt;p&gt;Rizzen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the place for ideas, discussion results and progress related to the long term goal of converting PCGen from being a Java based application to using another cross platform language(s) and libraries.&lt;br /&gt;
&lt;br /&gt;
As discussions take place and progress is made additional pages will be created and linked here, thus keeping all the related content together.&lt;br /&gt;
&lt;br /&gt;
There is also an opportunity to also change data file formats, while new engine is being developed. New engine will also have all existing hard coded game mechanic data and code removed, to truly make PCGen engine game system agnostic, and also allow for campaign settings and house rules to easily alter mechanics of the base system so characters are complete in terms of the setting and/or house rules being used.&lt;br /&gt;
&lt;br /&gt;
Currently no major version will be assigned during the duration of converting from Java. Major version number will be assigned when new code base engine is ready for beta and release.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Engine ==&lt;br /&gt;
* Current proposal is to use C# as main application language&lt;br /&gt;
* Possible use embedded scripting language to provide game system mechanics it's logical functionality, which would allow on the fly easy to change rules, as no rule or data is hard coded into the engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Data file formats ==&lt;br /&gt;
* Using XML or JSON for data files (requires a redesign of the current LST format)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Other ==&lt;br /&gt;
* Possible use of MySQL (or another supported open source SQL database)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributors ==&lt;br /&gt;
Rizzen&lt;/div&gt;</summary>
		<author><name>Rizzen</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Complete_overhaul_of_PCGen_from_Java&amp;diff=4078</id>
		<title>Complete overhaul of PCGen from Java</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Complete_overhaul_of_PCGen_from_Java&amp;diff=4078"/>
		<updated>2017-12-31T10:21:52Z</updated>

		<summary type="html">&lt;p&gt;Rizzen: Created page with &amp;quot;This is the place for ideas, discussion results and progress related to the long term goal of converting PCGen from being a Java based application to using another cross platf...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the place for ideas, discussion results and progress related to the long term goal of converting PCGen from being a Java based application to using another cross platform language(s) and libraries.&lt;br /&gt;
&lt;br /&gt;
As discussions take place and progress is made additional pages will be created and linked here, thus keeping all the related content together.&lt;br /&gt;
&lt;br /&gt;
There is also an opportunity to also change data file formats, while new engine is being developed. New engine will also have all existing hard coded game mechanic data and code removed, to truly make PCGen engine game system agnostic, and also allow for campaign settings and house rules to easily alter mechanics of the base system so characters are complete in terms of the setting and/or house rules being used.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Engine ==&lt;br /&gt;
* Current proposal is to use C# as main application language&lt;br /&gt;
* Possible use embedded scripting language to provide game system mechanics it's logical functionality, which would allow on the fly easy to change rules, as no rule or data is hard coded into the engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Data file formats ==&lt;br /&gt;
* Using XML or JSON for data files (requires a redesign of the current LST format)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Other ==&lt;br /&gt;
* Possible use of MySQL (or another supported open source SQL database)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributors ==&lt;br /&gt;
Rizzen&lt;/div&gt;</summary>
		<author><name>Rizzen</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Future_Development&amp;diff=4077</id>
		<title>Future Development</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Future_Development&amp;diff=4077"/>
		<updated>2017-12-31T10:00:51Z</updated>

		<summary type="html">&lt;p&gt;Rizzen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a catchall page listing topics and idea's for the future development of PCGen that have not yet been made into formal requests and have not had specs developed to cover the request or stated problem. These pages may be moved to The specs page once they are resolved into workable specs.&lt;br /&gt;
&lt;br /&gt;
* [[Proposal Attachment]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[LIST/CHOICE usage]]&lt;br /&gt;
&lt;br /&gt;
* [[Handling campaign settings]]&lt;br /&gt;
&lt;br /&gt;
* [[ANY and ALL in Tokens]]&lt;br /&gt;
&lt;br /&gt;
* [[.CLEARALL Syntax]]&lt;br /&gt;
&lt;br /&gt;
* [[Bonus domain spells]]&lt;br /&gt;
&lt;br /&gt;
* [[CDOM - Token Application in Spells/Skills/Languages]]&lt;br /&gt;
&lt;br /&gt;
* [[PRESPELLTYPE Syntax]]&lt;br /&gt;
&lt;br /&gt;
* [[PCGen Support for Savage Worlds]]&lt;br /&gt;
&lt;br /&gt;
* [[XML Projects and related items]]&lt;br /&gt;
&lt;br /&gt;
* [[Internationalization]]&lt;br /&gt;
&lt;br /&gt;
* [[Major Code Projects]]&lt;br /&gt;
&lt;br /&gt;
* [[Formula Parser-JEP removal]]&lt;br /&gt;
&lt;br /&gt;
* [[Tom's Arch &amp;quot;TO DO&amp;quot; List]]&lt;br /&gt;
&lt;br /&gt;
* [[Character Data Store]]&lt;br /&gt;
&lt;br /&gt;
* [[PCGen Documentation HTML Compliance Project]]&lt;br /&gt;
&lt;br /&gt;
* [[PCGen Documentation Style Guide]]&lt;br /&gt;
&lt;br /&gt;
* [[PCGen Documentation DTP Initiative]]&lt;br /&gt;
&lt;br /&gt;
* [[Equipment Variables Proposal Discussion]]&lt;br /&gt;
&lt;br /&gt;
== Long term goals ==&lt;br /&gt;
* [[Complete overhaul of PCGen from Java]]&lt;/div&gt;</summary>
		<author><name>Rizzen</name></author>
		
	</entry>
</feed>