ardour/gtk2_ardour/bundle_env_mingw.cc

160 lines
4.5 KiB
C++
Raw Normal View History

/*
Copyright (C) 2001-2012 Paul Davis
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
2014-10-02 00:11:15 -04:00
#include <stdlib.h>
#include "bundle_env.h"
2014-09-30 21:59:48 -04:00
#include "i18n.h"
2014-10-02 00:11:15 -04:00
#include <glibmm.h>
2014-09-30 21:59:48 -04:00
#include <fontconfig/fontconfig.h>
2014-10-02 13:01:12 -04:00
#include <pango/pangoft2.h>
#include <pango/pangocairo.h>
2014-10-03 17:07:45 -04:00
2014-10-02 00:11:15 -04:00
#include <windows.h>
#include <wingdi.h>
2014-10-03 17:07:45 -04:00
#include <shlobj.h> // CSIDL_*
2014-09-30 21:59:48 -04:00
#include "ardour/ardour.h"
#include "ardour/search_paths.h"
#include "ardour/filesystem_paths.h"
#include "pbd/file_utils.h"
#include "pbd/epa.h"
2014-10-03 17:07:45 -04:00
#include "pbd/windows_special_dirs.h"
2014-09-30 21:59:48 -04:00
using namespace std;
using namespace PBD;
using namespace ARDOUR;
2014-10-03 17:07:45 -04:00
/* query top-level Ardour installation path.
* Typically, this will be somehwere like
* "C:\Program Files (x86)\Ardour"
*/
const std::string
get_install_path ()
{
const gchar* pExeRoot = g_win32_get_package_installation_directory_of_module (0);
if (0 == pExeRoot) {
HKEY key;
DWORD size = PATH_MAX;
char tmp[PATH_MAX+1];
if (
#ifdef __MINGW64__
(ERROR_SUCCESS == RegOpenKeyExA (HKEY_LOCAL_MACHINE, "Software\\" PROGRAM_NAME "\\v" PROGRAM_VERSION "\\w64", 0, KEY_READ, &key))
2014-10-03 17:07:45 -04:00
#else
(ERROR_SUCCESS == RegOpenKeyExA (HKEY_LOCAL_MACHINE, "Software\\" PROGRAM_NAME "\\v" PROGRAM_VERSION "\\w32", 0, KEY_READ, &key))
2014-10-03 17:07:45 -04:00
#endif
&&(ERROR_SUCCESS == RegQueryValueExA (key, "Install_Dir", 0, NULL, reinterpret_cast<LPBYTE>(tmp), &size))
)
{
pExeRoot = Glib::locale_to_utf8(tmp).c_str();
}
}
if (0 == pExeRoot) {
const char *program_files = PBD::get_win_special_folder (CSIDL_PROGRAM_FILES);
if (program_files) {
pExeRoot = g_build_filename(program_files, PROGRAM_NAME, NULL);
}
}
if (pExeRoot && Glib::file_test(pExeRoot, Glib::FILE_TEST_EXISTS|Glib::FILE_TEST_IS_DIR)) {
return std::string (pExeRoot);
}
return "";
}
void
fixup_bundle_environment (int, char* [], const char** localedir)
{
2014-10-02 00:11:15 -04:00
EnvironmentalProtectionAgency::set_global_epa (new EnvironmentalProtectionAgency (true));
/* what to do ? */
2014-10-02 00:11:15 -04:00
// we should at least set ARDOUR_DATA_PATH to prevent the warning message.
// setting a FONTCONFIG_FILE won't hurt either see bundle_env_msvc.cc
// (pangocairo prefers the windows gdi backend unless PANGOCAIRO_BACKEND=fc is set)
// Unset GTK_RC_FILES so that only ardour specific files are loaded
Glib::unsetenv ("GTK_RC_FILES");
2014-10-03 17:07:45 -04:00
std::string path;
const char *cstr;
cstr = getenv ("VAMP_PATH");
if (cstr) {
path = cstr;
path += G_SEARCHPATH_SEPARATOR;
} else {
path = "";
}
path += Glib::build_filename(ardour_dll_directory(), "vamp");
2014-10-03 17:07:45 -04:00
path += G_SEARCHPATH_SEPARATOR;
path += "%ProgramFiles%\\Vamp Plugins"; // default vamp path
path += G_SEARCHPATH_SEPARATOR;
path += "%COMMONPROGRAMFILES%\\Vamp Plugins";
Glib::setenv ("VAMP_PATH", path, true);
2015-02-12 11:35:39 -05:00
Glib::setenv ("SUIL_MODULE_DIR", Glib::build_filename(ardour_dll_directory(), "suil"), true);
2014-10-02 00:11:15 -04:00
}
2014-10-03 17:07:45 -04:00
static __cdecl void
unload_custom_fonts()
{
2014-10-02 00:11:15 -04:00
std::string ardour_mono_file;
if (!find_file (ardour_data_search_path(), "ArdourMono.ttf", ardour_mono_file)) {
return;
}
RemoveFontResource(ardour_mono_file.c_str());
}
2014-10-03 17:07:45 -04:00
void
load_custom_fonts()
{
2014-09-30 21:59:48 -04:00
std::string ardour_mono_file;
if (!find_file (ardour_data_search_path(), "ArdourMono.ttf", ardour_mono_file)) {
cerr << _("Cannot find ArdourMono TrueType font") << endl;
2014-10-02 00:11:15 -04:00
return;
2014-09-30 21:59:48 -04:00
}
2014-10-02 13:01:12 -04:00
if (pango_font_map_get_type() == PANGO_TYPE_FT2_FONT_MAP) {
FcConfig *config = FcInitLoadConfigAndFonts();
FcBool ret = FcConfigAppFontAddFile(config, reinterpret_cast<const FcChar8*>(ardour_mono_file.c_str()));
2014-09-30 21:59:48 -04:00
2014-10-02 13:01:12 -04:00
if (ret == FcFalse) {
cerr << _("Cannot load ArdourMono TrueType font.") << endl;
}
2014-09-30 21:59:48 -04:00
2014-10-02 13:01:12 -04:00
ret = FcConfigSetCurrent(config);
2014-10-02 00:11:15 -04:00
2014-10-02 13:01:12 -04:00
if (ret == FcFalse) {
cerr << _("Failed to set fontconfig configuration.") << endl;
}
2014-10-02 00:11:15 -04:00
} else {
2014-10-02 13:01:12 -04:00
// pango with win32 backend
if (0 == AddFontResource(ardour_mono_file.c_str())) {
cerr << _("Cannot register ArdourMono TrueType font with windows gdi.") << endl;
} else {
atexit (&unload_custom_fonts);
}
2014-10-02 00:11:15 -04:00
}
}