diff options
| author | Tannin <devnull@localhost> | 2013-03-27 21:04:27 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2013-03-27 21:04:27 +0100 |
| commit | b4220cf2f4e1998299517490244a48f7ec2b0235 (patch) | |
| tree | 251c975507250eabd6c8a541b6c345cbf72288a7 /src/shared | |
| parent | 10485e15e4de3e1a6c30733ad2d4850591d31509 (diff) | |
| parent | e0eb97922d5ef4a1448e76f13374ebfda7fda403 (diff) | |
Merge with branch1.0
Diffstat (limited to 'src/shared')
| -rw-r--r-- | src/shared/fallout3info.cpp | 10 | ||||
| -rw-r--r-- | src/shared/fallout3info.h | 2 | ||||
| -rw-r--r-- | src/shared/falloutnvinfo.cpp | 10 | ||||
| -rw-r--r-- | src/shared/falloutnvinfo.h | 2 | ||||
| -rw-r--r-- | src/shared/gameinfo.h | 2 | ||||
| -rw-r--r-- | src/shared/oblivioninfo.cpp | 11 | ||||
| -rw-r--r-- | src/shared/oblivioninfo.h | 2 | ||||
| -rw-r--r-- | src/shared/skyriminfo.cpp | 16 | ||||
| -rw-r--r-- | src/shared/skyriminfo.h | 2 |
9 files changed, 57 insertions, 0 deletions
diff --git a/src/shared/fallout3info.cpp b/src/shared/fallout3info.cpp index a37e1119..79dd90c9 100644 --- a/src/shared/fallout3info.cpp +++ b/src/shared/fallout3info.cpp @@ -102,6 +102,16 @@ std::vector<std::wstring> Fallout3Info::getPrimaryPlugins() return boost::assign::list_of(L"fallout3.esm");
}
+std::vector<std::wstring> Fallout3Info::getVanillaBSAs()
+{
+ return boost::assign::list_of (L"Fallout - Textures.bsa")
+ (L"Fallout - Meshes.bsa")
+ (L"Fallout - Voices.bsa")
+ (L"Fallout - Sound.bsa")
+ (L"Fallout - MenuVoices.bsa")
+ (L"Fallout - Misc.bsa");
+}
+
std::vector<std::wstring> Fallout3Info::getIniFileNames()
{
return boost::assign::list_of(L"fallout.ini")(L"falloutprefs.ini");
diff --git a/src/shared/fallout3info.h b/src/shared/fallout3info.h index 9ec32027..95a76471 100644 --- a/src/shared/fallout3info.h +++ b/src/shared/fallout3info.h @@ -57,6 +57,8 @@ public: virtual std::vector<std::wstring> getPrimaryPlugins();
+ virtual std::vector<std::wstring> getVanillaBSAs();
+
// file name of this games ini (no path)
virtual std::vector<std::wstring> getIniFileNames();
diff --git a/src/shared/falloutnvinfo.cpp b/src/shared/falloutnvinfo.cpp index cd5586f3..6da454ee 100644 --- a/src/shared/falloutnvinfo.cpp +++ b/src/shared/falloutnvinfo.cpp @@ -103,6 +103,16 @@ std::vector<std::wstring> FalloutNVInfo::getPrimaryPlugins() return boost::assign::list_of(L"falloutnv.esm");
}
+std::vector<std::wstring> FalloutNVInfo::getVanillaBSAs()
+{
+ return boost::assign::list_of (L"Fallout - Textures.bsa")
+ (L"Fallout - Textures2.bsa")
+ (L"Fallout - Meshes.bsa")
+ (L"Fallout - Voices1.bsa")
+ (L"Fallout - Sound.bsa")
+ (L"Fallout - Misc.bsa");
+}
+
std::vector<std::wstring> FalloutNVInfo::getIniFileNames()
{
return boost::assign::list_of(L"fallout.ini")(L"falloutprefs.ini");
diff --git a/src/shared/falloutnvinfo.h b/src/shared/falloutnvinfo.h index 53784177..2f6cba7b 100644 --- a/src/shared/falloutnvinfo.h +++ b/src/shared/falloutnvinfo.h @@ -59,6 +59,8 @@ public: virtual std::vector<std::wstring> getPrimaryPlugins();
+ virtual std::vector<std::wstring> getVanillaBSAs();
+
// file name of this games ini (no path)
virtual std::vector<std::wstring> getIniFileNames();
diff --git a/src/shared/gameinfo.h b/src/shared/gameinfo.h index fd8ba998..3e022ef4 100644 --- a/src/shared/gameinfo.h +++ b/src/shared/gameinfo.h @@ -127,6 +127,8 @@ public: virtual std::vector<std::wstring> getPrimaryPlugins() = 0;
+ virtual std::vector<std::wstring> getVanillaBSAs() = 0;
+
// file name of this games ini file(s)
virtual std::vector<std::wstring> getIniFileNames() = 0;
diff --git a/src/shared/oblivioninfo.cpp b/src/shared/oblivioninfo.cpp index 73e841a7..7c6d5cbb 100644 --- a/src/shared/oblivioninfo.cpp +++ b/src/shared/oblivioninfo.cpp @@ -106,6 +106,17 @@ std::vector<std::wstring> OblivionInfo::getPrimaryPlugins() }
+std::vector<std::wstring> OblivionInfo::getVanillaBSAs()
+{
+ return boost::assign::list_of(L"Oblivion - Meshes.bsa")
+ (L"Oblivion - Textures - Compressed.bsa")
+ (L"Oblivion - Sounds.bsa")
+ (L"Oblivion - Voices1.bsa")
+ (L"Oblivion - Voices2.bsa")
+ (L"Oblivion - Misc.bsa");
+}
+
+
std::vector<std::wstring> OblivionInfo::getIniFileNames()
{
return boost::assign::list_of(L"oblivion.ini")(L"oblivionprefs.ini");
diff --git a/src/shared/oblivioninfo.h b/src/shared/oblivioninfo.h index 51fd46e4..13374aa3 100644 --- a/src/shared/oblivioninfo.h +++ b/src/shared/oblivioninfo.h @@ -55,6 +55,8 @@ public: virtual std::vector<std::wstring> getPrimaryPlugins();
+ virtual std::vector<std::wstring> getVanillaBSAs();
+
// file name of this games ini (no path)
virtual std::vector<std::wstring> getIniFileNames();
diff --git a/src/shared/skyriminfo.cpp b/src/shared/skyriminfo.cpp index 1c13effb..80cf4c80 100644 --- a/src/shared/skyriminfo.cpp +++ b/src/shared/skyriminfo.cpp @@ -131,6 +131,22 @@ std::vector<std::wstring> SkyrimInfo::getPrimaryPlugins() return boost::assign::list_of(L"skyrim.esm")(L"update.esm");
}
+std::vector<std::wstring> SkyrimInfo::getVanillaBSAs()
+{
+ return boost::assign::list_of(L"Skyrim - Misc.bsa")
+ (L"Skyrim - Shaders.bsa")
+ (L"Skyrim - Textures.bsa")
+ (L"HighResTexturePack01.bsa")
+ (L"HighResTexturePack02.bsa")
+ (L"HighResTexturePack03.bsa")
+ (L"Skyrim - Interface.bsa")
+ (L"Skyrim - Animations.bsa")
+ (L"Skyrim - Meshes.bsa")
+ (L"Skyrim - Sounds.bsa")
+ (L"Skyrim - Voices.bsa")
+ (L"Skyrim - VoicesExtra.bsa");
+}
+
std::vector<std::wstring> SkyrimInfo::getIniFileNames()
{
return boost::assign::list_of(L"skyrim.ini")(L"skyrimprefs.ini");
diff --git a/src/shared/skyriminfo.h b/src/shared/skyriminfo.h index 024d0395..4760c38b 100644 --- a/src/shared/skyriminfo.h +++ b/src/shared/skyriminfo.h @@ -62,6 +62,8 @@ public: virtual std::vector<std::wstring> getPrimaryPlugins();
+ virtual std::vector<std::wstring> getVanillaBSAs();
+
// file name of this games ini (no path)
virtual std::vector<std::wstring> getIniFileNames();
|
