forked from mirrors/nixpkgs
fsg: migrate to wxGTK32
This commit is contained in:
parent
86872d31b1
commit
37494841ba
pkgs
|
@ -1,5 +1,4 @@
|
||||||
{ lib, stdenv, fetchurl, gtk2, glib, pkg-config, libGLU, libGL, wxGTK, libX11, xorgproto
|
{ lib, stdenv, fetchurl, gtk2, glib, pkg-config, libGLU, libGL, wxGTK32, libX11, xorgproto, runtimeShell }:
|
||||||
, runtimeShell }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "fsg";
|
pname = "fsg";
|
||||||
|
@ -11,10 +10,13 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1756y01rkvd3f1pkj88jqh83fqcfl2fy0c48mcq53pjzln9ycv8c";
|
sha256 = "1756y01rkvd3f1pkj88jqh83fqcfl2fy0c48mcq53pjzln9ycv8c";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [ ./wxgtk-3.2.patch ];
|
||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ gtk2 glib libGLU libGL wxGTK libX11 xorgproto ];
|
|
||||||
|
buildInputs = [ glib libGLU libGL wxGTK32 libX11 xorgproto ];
|
||||||
|
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
sed -e '
|
sed -e '
|
||||||
|
@ -32,7 +34,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Cellular automata engine tuned towards the likes of Falling Sand";
|
description = "Cellular automata engine tuned towards the likes of Falling Sand";
|
||||||
maintainers = [lib.maintainers.raskin];
|
maintainers = [ lib.maintainers.raskin ];
|
||||||
platforms = lib.platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
68
pkgs/games/fsg/wxgtk-3.2.patch
Normal file
68
pkgs/games/fsg/wxgtk-3.2.patch
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
diff --git a/Canvas.cpp b/Canvas.cpp
|
||||||
|
index 8c00727..5ee7756 100644
|
||||||
|
--- a/Canvas.cpp
|
||||||
|
+++ b/Canvas.cpp
|
||||||
|
@@ -889,7 +889,6 @@ void Canvas::Refresh(){
|
||||||
|
if (doDraw){
|
||||||
|
wxClientDC dc(this);
|
||||||
|
|
||||||
|
- dc.BeginDrawing();
|
||||||
|
|
||||||
|
wxMemoryDC memdc;
|
||||||
|
wxImage image(g_width, g_height, bitmapdata, true);
|
||||||
|
@@ -899,7 +898,6 @@ void Canvas::Refresh(){
|
||||||
|
dc.Blit(0,0,g_width, g_height, &memdc, 0, 0);
|
||||||
|
|
||||||
|
if (!drawAll){
|
||||||
|
- dc.EndDrawing();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
@@ -912,7 +910,6 @@ void Canvas::Refresh(){
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
- dc.EndDrawing();
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
diff --git a/MainFrame.cpp b/MainFrame.cpp
|
||||||
|
index c45107b..d93f9e1 100644
|
||||||
|
--- a/MainFrame.cpp
|
||||||
|
+++ b/MainFrame.cpp
|
||||||
|
@@ -178,7 +178,7 @@ MainFrame::MainFrame(const wxString& title, const wxPoint& pos, const wxSize& si
|
||||||
|
RHSizer->Add(RH4, 0, wxEXPAND | wxALL, 5);
|
||||||
|
}
|
||||||
|
|
||||||
|
- sizer->Add(g_canvas, 0, wxADJUST_MINSIZE | wxALL, 10);
|
||||||
|
+ sizer->Add(g_canvas, 0, wxALL, 10);
|
||||||
|
sizer->Add(RHSizer, 1, wxEXPAND);
|
||||||
|
}
|
||||||
|
this->SetSizer(sizer);
|
||||||
|
@@ -1165,7 +1165,7 @@ void MainFrame::OnMenu(wxCommandEvent& event){
|
||||||
|
}
|
||||||
|
else if(event.GetId() == 1051){
|
||||||
|
//Load
|
||||||
|
- wxFileDialog dialog(this, _("Load from a file"), _(""), _(""), _("Any Image Files (*.*)|*.*"), wxOPEN);
|
||||||
|
+ wxFileDialog dialog(this, _("Load from a file"), _(""), _(""), _("Any Image Files (*.*)|*.*"), wxFD_OPEN);
|
||||||
|
|
||||||
|
if (dialog.ShowModal() == wxID_OK){
|
||||||
|
sandboxFilename = dialog.GetPath();
|
||||||
|
@@ -1174,7 +1174,7 @@ void MainFrame::OnMenu(wxCommandEvent& event){
|
||||||
|
}
|
||||||
|
else if(event.GetId() == 1052){
|
||||||
|
//Save
|
||||||
|
- wxFileDialog dialog(this, _("Save to a file"), _(""), _(""), _("PNG files (*.png)|*.png|BMP files (*.bmp)|*.bmp"), wxSAVE);
|
||||||
|
+ wxFileDialog dialog(this, _("Save to a file"), _(""), _(""), _("PNG files (*.png)|*.png|BMP files (*.bmp)|*.bmp"), wxFD_SAVE);
|
||||||
|
|
||||||
|
if (dialog.ShowModal() == wxID_OK){
|
||||||
|
wxString filename = dialog.GetPath();
|
||||||
|
@@ -1216,7 +1216,7 @@ void MainFrame::OnMenu(wxCommandEvent& event){
|
||||||
|
else if(event.GetId() == 1055){
|
||||||
|
//Load physics
|
||||||
|
|
||||||
|
- wxFileDialog dialog(this, _("Load from a file"), _(""), _(""), _("Physics Files (*.txt)|*.txt"), wxOPEN);
|
||||||
|
+ wxFileDialog dialog(this, _("Load from a file"), _(""), _(""), _("Physics Files (*.txt)|*.txt"), wxFD_OPEN);
|
||||||
|
if (dialog.ShowModal() == wxID_OK){
|
||||||
|
physicsFilename = dialog.GetPath();
|
||||||
|
loadPhysics(physicsFilename);
|
|
@ -33780,11 +33780,7 @@ with pkgs;
|
||||||
|
|
||||||
frozen-bubble = callPackage ../games/frozen-bubble { };
|
frozen-bubble = callPackage ../games/frozen-bubble { };
|
||||||
|
|
||||||
fsg = callPackage ../games/fsg {
|
fsg = callPackage ../games/fsg { };
|
||||||
wxGTK = wxGTK28.override {
|
|
||||||
unicode = false;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
galaxis = callPackage ../games/galaxis { };
|
galaxis = callPackage ../games/galaxis { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue