summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'refs/remotes/TanninOne/master'Thomas Tanner2015-12-060-0/+0
|\
| * Merge pull request #349 from ThosRTanner/issue/344TanninOne2015-12-060-0/+0
|/| | | | | Fix for Issue 344 (1 of 4) - add code to get script extender and game versions
| * Merge branch 'master' into issue/344Thomas Tanner2015-12-0671-1384/+3735
| |\ | |/ |/| | | | | | | | | | | | | | | | | # Conflicts: # src/gameinfoimpl.cpp # src/gameinfoimpl.h # src/shared/fallout3info.h # src/shared/falloutnvinfo.h # src/shared/gameinfo.h # src/shared/oblivioninfo.h # src/shared/skyriminfo.h
* | Merge branch 'ThosRTanner-master'TanninOne2015-12-0621-28/+2903
|\ \
| * | Merge branch 'master' of https://github.com/ThosRTanner/modorganizer into ↵TanninOne2015-12-0621-28/+2903
|/| | | | | | | | | | | ThosRTanner-master
| * | Merge remote-tracking branch 'TanninOne/master'Thomas Tanner2015-12-0537-1624/+1719
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # SConstruct # src/modinfo.cpp # src/modinfo.h
| * \ \ Merge remote-tracking branch 'refs/remotes/TanninOne/master'Thomas Tanner2015-11-181-4/+8
| |\ \ \
| * | | | Better header matchingThomas Tanner2015-11-122-3/+4
| | | | |
| * | | | Yet more changes for include what you use, including a moderate hack for ↵Thomas Tanner2015-11-093-33/+54
| | | | | | | | | | | | | | | | | | | | compiling stackdata with clang
| * | | | More cleanupsThomas Tanner2015-11-082-40/+40
| | | | |
| * | | | Separated out the include what you use mappings into separate files, more ↵Thomas Tanner2015-11-086-335/+2690
| | | | | | | | | | | | | | | | | | | | improvements
| * | | | Improve diagnostics if IWYU is enabledThomas Tanner2015-10-315-13/+87
| | | | | | | | | | | | | | | | | | | | Few small cleanups from clang
| * | | | Proper integraton of IWYU into the build (including massaging clang errors ↵Thomas Tanner2015-10-253-12/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into the issues tab). Note: There is at least one ug in QT that stops thing s copiling because it doesn't undertand clangs version
| * | | | Make the IWYU generation genericThomas Tanner2015-10-253-78/+164
| | | | |
| * | | | umm. windows hardlinks weren't quite working as expectedThomas Tanner2015-10-183-37/+144
| | | | |
| * | | | Added support for include-what-you-use in a very simplistic fashion to the ↵Thomas Tanner2015-10-1715-23/+223
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Scons build. This isn't exactly production ready because the qt headers are a nightmarish web of interdependencies but it's useful for checking. I've also removed a few unused include files it detected and corrected some things that upset clang in a big way.
* | | | | Merge pull request #372 from ThosRTanner/issue/356TanninOne2015-12-0659-1304/+836
|\ \ \ \ \ | |_|_|/ / |/| | | | Refactor gameinfo & 'shared' library to use game plugins (9 of 17)
| * | | | Remove debugging code quick!Thomas Tanner2015-12-062-28/+2
| | | | |
| * | | | Gets rid of last vestiges of GameInfo apart from startup and hookdllThomas Tanner2015-12-0515-143/+61
| | | | | | | | | | | | | | | | | | | | Working on sorting out savegame stuff
| * | | | Merge remote-tracking branch 'remotes/TanninOne/master' into issue/356Thomas Tanner2015-12-0537-1497/+1659
| |\ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/downloadmanager.cpp src/mainwindow.cpp src/modinfo.cpp src/modinfo.h src/selfupdater.cpp src/shared/fallout3info.cpp src/shared/fallout3info.h src/shared/falloutnvinfo.cpp src/shared/falloutnvinfo.h src/shared/gameinfo.h src/shared/oblivioninfo.cpp src/shared/oblivioninfo.h src/shared/skyriminfo.cpp src/shared/skyriminfo.h
| * | | | Most of work for savegameThomas Tanner2015-12-0511-361/+72
| | | | |
| * | | | Fix up so that hookdll continues to work properlyThomas Tanner2015-11-291-2/+4
| | | | |
| * | | | Another cleanup and make the program not crash when looking at saves for the ↵Thomas Tanner2015-11-292-14/+18
| | | | | | | | | | | | | | | | | | | | nonce
| * | | | Abstract away the xxse_loader manipulation and make use of the ↵Thomas Tanner2015-11-281-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'ScriptExtender' feature instead A note: This makes loadmechanism.cpp require xxse_loader.exe to exist, not the dll as other places get the version number from the exe.
| * | | | Reworked startup considerably so now no longer dependant on GameInfoThomas Tanner2015-11-2812-110/+156
| | | | | | | | | | | | | | | | | | | | Did some const correctness to the "managed_game" property as you shouldn't really be altering the plugin details whilst MO is running
| * | | | Renamed getNexusName to getGameShortName as previously because it hopefully ↵Thomas Tanner2015-11-265-8/+8
| | | | | | | | | | | | | | | | | | | | isn't too nexus related.
| * | | | Replaced the IPluginGame getNexusDisplayURL with some APIs in NexusInterfaceThomas Tanner2015-11-264-11/+44
| | | | | | | | | | | | | | | | | | | | It makes more sense to have them here as they have very little to do with the game, more to do with the origin of the mod.
| * | | | Remove remaining gameInfoThomas Tanner2015-11-261-2/+0
| | | | |
| * | | | This removes getNexusPage from GameInfo and is currently in the game plugin.Thomas Tanner2015-11-2614-103/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I'm looking to move it to the nexus interface though as it doesn't really relate to the game plugin. I've also removed the MananagementURL as - you can log into nexus without needing to specify the game - See above - it doesn't belong with the game plugin This gets rid of all dependencies bar game saving and logging in
| * | | | Replace last occurrence of GameInfo::getNexusGameID and remove a whole load ↵Thomas Tanner2015-11-2626-58/+70
| | | | | | | | | | | | | | | | | | | | of gameinfo.h includes
| * | | | Forgot to remove the redundant memberThomas Tanner2015-11-253-3/+1
| | | | |
| * | | | Replace GameInfo::getNexusInfoUrl with IPluginGame::getNexusManagementUrlThomas Tanner2015-11-2517-140/+221
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | also added getNexusDisplayUrl for the other variant of getNexusPage Removed skyrim static versions note that Nexusinterface is now passed a game plugin rather than a URL and a game ID if you want to override the current game
| * | | | Bunch of const correctness changes. There shouldn't be any update of plugin ↵Thomas Tanner2015-11-2513-16/+22
| | | | | | | | | | | | | | | | | | | | games once MO has started
| * | | | Removes all references to GameInfo::getGameDirectory apart from one during ↵Thomas Tanner2015-11-2514-40/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | startup Did some const correctness improvements Also may have fixed a potential crash as the Profile copy constructor didn't copy the m_GamePlugin membber
| * | | | Replace GameInfo::getNexusModID with IPluginGame::getNexusModOrganizerID()Thomas Tanner2015-11-2410-27/+8
| | | | | | | | | | | | | | | | | | | | Also implement IPluginGame::getNexusGameID() but not hooked it in yet.
| * | | | Replace GameInfo::getLoadorderMechanism with IPluginGame::getLoadOrderMechanismThomas Tanner2015-11-247-31/+25
| | | | |
| * | | | Merge branch 'issue/356' of https://github.com/ThosRTanner/modorganizer into ↵Thomas Tanner2015-11-240-0/+0
| |\ \ \ \ | | | | | | | | | | | | | | | | | | issue/356
| | * | | | Updated comments so I can see where I'm goingThomas Tanner2015-11-241-3/+5
| | | | | |
| * | | | | Updated comments so I can see where I'm goingThomas Tanner2015-11-241-4/+6
| |/ / / /
| * | | | Use IPluginGame::getIniFiles throughout.Thomas Tanner2015-11-243-24/+9
| | | | | | | | | | | | | | | | | | | | Also removed the default constructor from Profile class and stopped registering it as a QMetaObject (which it is the only reason it is there).
| * | | | Removes all uses of GameInfo::getShortName, replaced by ↵Thomas Tanner2015-11-2410-25/+29
| | | | | | | | | | | | | | | | | | | | IPluginGame::getNexustName
| * | | | Remove most instances of GameInfo::getname, and transfer getDLCPlugins to ↵Thomas Tanner2015-11-2315-155/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the plugingame interface Also commented out startDownloadNexusFile as it doesn't appear to be used anywhere
| * | | | Removed 'requiresSteam' which is only used in one place and might or might ↵Thomas Tanner2015-11-233-8/+4
| | | | | | | | | | | | | | | | | | | | not be game related
| * | | | Final eradication of igameinfo and adding python wrappers for IPluginGameThomas Tanner2015-11-229-117/+1
| | | | |
| * | | | Removes igameinfo.h from everywhere apart from (sort of) the pythonrunner ↵Thomas Tanner2015-11-225-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | plugin. Also comment out the filemapping function because it's large and doesn't appear to be used anywhere
| * | | | Replace some instances of qApp->property("managed_game") with the saved pointer.Thomas Tanner2015-11-214-15/+13
| | | | | | | | | | | | | | | | | | | | Pedantic note: This doesn't help the possibility of supporting multiple executables greatly, we'd have to have a lot of register-for-change events.
| * | | | Replace GameInfo::path with iPluginGame::gameDirectory (or dataDirectory ↵Thomas Tanner2015-11-212-3/+3
| | | | | | | | | | | | | | | | | | | | where applicable)
| * | | | Removal of (get)BinaryNameThomas Tanner2015-11-2112-26/+24
| | | | |
| * | | | Member variable unused so removed it.Thomas Tanner2015-11-2011-27/+26
| | | | | | | | | | | | | | | | | | | | Leaves one asking *why* the datapath can be inside the game directory.
| * | | | Get rid of `GameIfo::getOrganizerDirectory` and associated member variableThomas Tanner2015-11-2015-35/+43
| | | | | | | | | | | | | | | | | | | | qApp->getProperty("dataPath") can be used instead (and is pretty much everywhere else) so it's unnecessary