homebrew-core/Formula/einstein.rb
2019-10-14 14:01:08 +02:00

68 lines
2.4 KiB
Ruby

class Einstein < Formula
desc "Remake of the old DOS game Sherlock"
homepage "https://web.archive.org/web/20120621005109/games.flowix.com/en/index.html"
url "https://web.archive.org/web/20120621005109/games.flowix.com/files/einstein/einstein-2.0-src.tar.gz"
sha256 "0f2d1c7d46d36f27a856b98cd4bbb95813970c8e803444772be7bd9bec45a548"
bottle do
cellar :any
sha256 "54ce5ebd0b06256ecdda309bc0a0b500a0bf29411021fb5525dd647b923c3354" => :catalina
sha256 "1430c04b154114c5ada29708033872f75a1c1ca361d997747aac748806d0182d" => :mojave
sha256 "faa76a6c3363ec2c5f814940560db5fb52d8d7af89149dae7bbdf14967c51e3a" => :high_sierra
sha256 "b2f4290bc28e3dd1c528b7c58fa363f8e5832c00283fa79f2f9243d8e5a02c4c" => :sierra
sha256 "d0424faaf640750ab3ff8e8e24216a93227b9ff40d33405e3a55a7bdf14d1a36" => :el_capitan
sha256 "e884bcdb8f1644707fceb03a8d7732a528495e9655216eff42336c64fdd90179" => :yosemite
end
depends_on "sdl"
depends_on "sdl_mixer"
depends_on "sdl_ttf"
# Fixes a cast error on compilation
patch :p0, :DATA
def install
system "make"
bin.install "einstein"
(pkgshare/"res").install "einstein.res"
end
end
__END__
--- formatter.cpp
+++ formatter.cpp
@@ -58,7 +58,7 @@ Formatter::Formatter(unsigned char *data, int offset)
if ((c.type == INT_ARG) || (c.type == STRING_ARG) ||
(c.type == FLOAT_ARG) || (c.type == DOUBLE_ARG))
{
- int no = (int)c.data;
+ int no = *((int*)(&c.data));
args[no - 1] = c.type;
}
}
@@ -135,7 +135,7 @@ std::wstring Formatter::format(std::vector<ArgValue*> &argValues) const
case STRING_ARG:
case INT_ARG:
- no = (int)cmd->data - 1;
+ no = *((int*)(&cmd->data)) - 1;
if (no < (int)argValues.size())
s += argValues[no]->format(cmd);
break;
--- main.cpp
+++ main.cpp
@@ -61,13 +61,9 @@ static void loadResources(const std::wstring &selfPath)
#ifdef WIN32
dirs.push_back(getStorage()->get(L"path", L"") + L"\\res");
#else
-#ifdef __APPLE__
- dirs.push_back(getResourcesPath(selfPath));
-#else
dirs.push_back(PREFIX L"/share/einstein/res");
dirs.push_back(fromMbcs(getenv("HOME")) + L"/.einstein/res");
#endif
-#endif
dirs.push_back(L"res");
dirs.push_back(L".");
resources = new ResourcesCollection(dirs);