Skip to content

Commit

Permalink
- Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
madame-rachelle committed Jan 3, 2020
0 parents commit 84fe9fc
Show file tree
Hide file tree
Showing 4 changed files with 229 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build/
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
cmake_minimum_required (VERSION 2.8.11)
project (CONVERT)
add_executable (convert-config config-converter.cpp)
170 changes: 170 additions & 0 deletions config-converter.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
/*
===============================================================================
Copyright (C) 2020 Rachael Alexanderson
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.
===============================================================================
*/

#include <iostream>
#include <fstream>
#include <string>
#include <string.h>

#include "config-converter.h"

int main(int argc, char** argv)
{
ifstream gzdoomini;
ofstream keyconf, defcvars, defbinds;
string line, streamcommand;
string game, mod;
string aliasname;

size_t found;
uint8_t handletype = 0;

if (argc <= 1)
{
cout << "Must specify config name (ie Doom/Hexen/etc)!\n";
return 0;
}

game.assign(argv[1]);
if (argc >= 3)
mod.assign(argv[2]);
else
mod.assign("");

sections section_list[] =
{
{ HT_ALIAS, "alias ", "[%s.ConsoleAliases]" },
{ HT_VERSION, "", "[LastRun]" },
{ HT_CVAR, "set ", "[GlobalSettings]" },
{ HT_CVAR, "set ", "[%s.Player]" },
{ HT_CVAR, "set ", "[%s.LocalServerInfo]" },
{ HT_CVAR, "set ", "[%s.NetServerInfo]" },
{ HT_CVAR, "set ", "[%s.ConsoleVariables]" },
{ HT_BIND, "bind ", "[%s.Bindings]" },
{ HT_BIND, "doublebind ", "[%s.DoubleBindings]" },
{ HT_BIND, "mapbind ", "[%s.AutomapBindings]" },
{ HT_BIND, "bind ", "[%s.%s.Bindings]" },
{ HT_BIND, "doublebind ", "[%s.%s.DoubleBindings]" },
{ HT_BIND, "mapbind ", "[%s.%s.AutomapBindings]" },
};

// check for the presence of output files, and error out if they're found
// this is to prevent loss of data
if (fexists("keyconf.txt") || fexists("defcvars.txt") || fexists("defbinds.txt"))
{
cout << "Current folder may not have any of the following files:" << endl;
cout << " keyconf.txt, defcvars.txt, or defbinds.txt" << endl << endl;
cout << "To prevent loss of data, please move these files out of the current folder or delete them." << endl;
return 0;
}

keyconf.open("keyconf.txt");
defcvars.open("defcvars.txt");
defbinds.open("defbinds.txt");

// check for the presence of gzdoom.ini and open it
if (fexists("gzdoom.ini"))
gzdoomini.open("gzdoom.ini");
else if (fexists("gzdoom_portable.ini"))
gzdoomini.open("gzdoom_portable.ini");
else
{
cout << "gzdoom.ini or gzdoom_portable.ini does not exist!\n";
return 0;
}

while ( getline(gzdoomini, line) )
{
if (line.empty())
continue;
if (line.front() == '[' && line.back() == ']')
{
handletype = HT_NONE;
// section
for (const sections &s : section_list)
{
char checkheader[257], checkline[257];
sprintf(checkheader, s.header.c_str(), game.c_str(), mod.c_str());
for (uint16_t j = 0; j < 256; j++)
{
if (checkheader[j] >= 'A' && checkheader[j] <= 'Z')
checkheader[j] += 32;
checkline[j] = line[j];
if (checkline[j] >= 'A' && checkline[j] <= 'Z')
checkline[j] += 32;
}
checkheader[256] = checkline[256] = 0;
if (!strcmp(checkheader, checkline))
{
handletype = s.handlingtype;
streamcommand = s.command;
}
}
}
else if (line.front() == '#')
{ } //comment, ignore
else if ((found = line.find("=")) != string::npos && handletype != HT_NONE)
{
string var = line.substr(0, found);
string value = line.substr(found + 1);
const char quote[2] = {34, 0};

switch (handletype)
{
case HT_CVAR:
defcvars << streamcommand << var << " " << quote << value << quote << endl;
break;
case HT_ALIAS:
if (!var.compare("Name"))
aliasname = value;
if (!var.compare("Value"))
keyconf << streamcommand << aliasname << " " << quote << value << quote << endl;
break;
case HT_VERSION:
defcvars << "version " << value << endl;
break;
case HT_BIND:
defbinds << streamcommand << var << " " << quote << value << quote << endl;
break;
default:
break;
}
}
}

defbinds.close();
defcvars.close();
keyconf.close();
gzdoomini.close();
return 0;
}

55 changes: 55 additions & 0 deletions config-converter.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
===============================================================================
Copyright (C) 2020 Rachael Alexanderson
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.
===============================================================================
*/

using namespace std;

bool fexists(const string& filename)
{
ifstream ifile(filename.c_str());
return (bool)ifile;
}

enum handlingtypes
{
HT_NONE,
HT_CVAR,
HT_ALIAS,
HT_VERSION,
HT_BIND,
};

struct sections
{
uint8_t handlingtype;
string command;
string header;
};

0 comments on commit 84fe9fc

Please sign in to comment.