Page 1 of 1

Build A World - data-importer - ideas

Posted: Fri Aug 07, 2015 2:12 pm
by sodandk
Hi

Got some requests for a data-importer into BAW. Feel free to discuss this subject here.

What would the aim for the importer be, etc. ?

Re: Build A World - data-importer - ideas

Posted: Fri Aug 07, 2015 5:14 pm
by devsh
What do you mean by data importer?

Re: Build A World - data-importer - ideas

Posted: Fri Aug 07, 2015 9:08 pm
by sodandk
People can make their own code to generate worlds, landscapes, geometric data etc. and export data to a simple BAW format,
for a BAW data importer to read. Read directly in as a world.

Re: Build A World - data-importer - ideas

Posted: Tue Sep 15, 2015 4:22 pm
by REDDemon
Make a simple data structure (like a struct with 2 arrays or something simple), then release a specification for the file format, you may want to look at other specifications to have a Idea of possible problems. Then provide to users a simple header only library (C or C++ 03) they can use to convert the data structure into a file using 1 function.

Cover simpler functionality first, if you want to support huge worlds your file format is likely to need an "index" as header that points to location of chunks like an archive.

Make it extendible (by leaving some encode space free for extensions) so that if it become successfull you can help users support even more cool content. You can also make some few importers/exporters for popular languages (Java and C#) but be precise with specifications so everyone can contribute.