Tagged Questions
3
votes
1answer
120 views
Haskell SDL: Can't find mingw32.dll
I finally made it to install Haskell SDL bindings on Windows. Using this:
> $env:Path += ";C:\SDL;C:\SDL\bin;C:\SDL\include;C:\SDL\lib"
> cabal install SDL --extra-include-dirs="C:\SDL\include" ...
3
votes
1answer
78 views
Compiling SDL on OS X with Haskell fails
I can't get my SDL program to even build on OS X; I get this error:
/Users/kata/code/mekhane/.hsenv/cabal/lib/SDL-0.6.4/ghc-7.4.1/HSSDL-0.6.4.o: unknown symbol `_SDL_HasSSE2'
I've tried ...
4
votes
1answer
118 views
Fullscreen within SDL
I’m writting a program in Haskell with SDL. When I do that:
screen <- trySetVideoMode width height depth [HWSurface,OpenGL]
the program behaves correctly. Now, if I do that :
screen <- ...
4
votes
0answers
130 views
Compile SDL with cabal in MinGW
I’m trying to install SDL within cabal for Haskell, in MinGW, but I got some problems. cabal can’t find the C library, and I don’t know why. Here some info:
I have downloaded both the dev and ...
0
votes
0answers
70 views
Looking for a function to map another an Surface’s pixels
I’m looking for a function that lets me to map a function on the pixels of a Surface. I generate a frame in OpenGL, but I also want it to support soft computation on it for old machines.
Something ...
1
vote
1answer
226 views
NSInternalInconsistencyException while running Haskell & SDL program
I am trying to compile and run a simple SDL program on OSX 10.8.2, SDL 1.2.15, GHC 7.4.2, haskell SDL bindings 0.6.4:
import Graphics.UI.SDL as SDL
main :: IO ()
main = do
screen <- ...
3
votes
2answers
166 views
SDL-Mixer audio stops upon starting Reactive-Banana input loop
I've been working on a game that uses multiple audio tracks whose volumes are adjusted in realtime based on mouse motion. I'm using SDl-Mixer for audio, and Reactive-Banana for the game in general. ...
1
vote
1answer
73 views
Segfault on TTF_Quit call when app built with cabal
I have a strange issue. I created a simple app in haskell with sdl, and when it's built with ghc there no problems, but when it's built with cabal I have a segfault after closing my app. I'm noticed ...
0
votes
1answer
104 views
Yampa value switch
I have an event SF Input (Event ()) that represents the key-up of the space key. I have some gravity and every time the user releases the key, it must switch between 1 and (-1). So I did this:
...
4
votes
1answer
124 views
Full Click/KeyPress Event with Reactive-banana and SDL
A full click event is a button down and up, without mouse motion, as far as I know. SDL only gives me Button Up and Down events.
Does reactive-banana have any way to express "key down and then key ...
7
votes
0answers
303 views
Computer game in Haskell — widget toolkit wanted [closed]
I am writing a small RTS game in Haskell, and the time has come to
create some GUI for it (buttons, menus and such). However, I don't
have any experience in GUI toolkit creation, so I would be ...
8
votes
2answers
645 views
GLUT Alternatives for Haskell?
I don't want to use GLUT, because it does not have a Haskell-like feeling on it. It basically forces you to use IORef and such, because of the callbacks.
I've considered GLFW, which seems simple and ...
3
votes
1answer
380 views
Haskell: Can not install SDL-0.6.2 on windows
I am trying to install the Haskell SDL-0.6.2 package on Windows 7 with ghc 6.12.1 (Haskell Platform). I end up getting the following output from cabal:
C:\Users\Martin\dev\Rasenschach_0>cabal ...
1
vote
1answer
275 views
Haskell OpenGL won't open in Ubuntu
This one is a bit weird, but I will start at the beginning:
As far as I gathered, there are 3 ways to open up an OpenGL window in Haskell: GLUT, GLFW and SDL. I don't want to use GLUT at all, because ...
3
votes
1answer
520 views
Haskell SDL Binding: How to blit sprites with transparent color?
I want to blit a sprite to a surface using Haskell's SDL binding, but I don't know how to define the transparent color in the sprite's surface. Here is the code so far:
module Main where
import ...
3
votes
1answer
410 views
Haskell SDL binding: Why doesn't SDL draw a circle here?
I want to use Haskell's SDL-binding for drawing simple objects (triangle, circles and the like). There is a function for drawing rectangles in Graphics.UI.SDL.Video that works ok. But I can't get the ...
2
votes
1answer
343 views
SDL and haskell problem in windows
I asked before what libraries to use in haskell to program a game, and got quite nice answers that got me in the right direction.
But i cant seem to solve a problem related to sdl binding. I've been ...
8
votes
2answers
437 views
How can configuration tools like sdl-config be used with a cabalized project?
I have a working SDL/Haskell application that I would like to build using Cabal instead of the current Makefile (because that is the "Haskell way"). The Makefile is itself very simple, and I was ...
28
votes
4answers
6k views
Haskell library for 2D drawing
I basically want to create a full screen window and draw text on it in different colors and sizes (and also update the screen). I've used pygame for this in python and I'm looking for a similar ...
1
vote
1answer
213 views
Haskell: Bizzare instance declaration in SDL bindings
The Haskell SDL bindings export an enumerated type called SDLKey. The Enum instance is declared in a strange way though:
instance Enum SDLKey Word32 where
fromEnum SDLK_UNKNOWN = 0
fromEnum ...
8
votes
5answers
1k views
Haskell or Ocaml with OpenGL and SDL precompiled distribution for Windows
I want to learn Ocaml or Haskell and I want to do it by writing a simple game. Apparently, there's one small problem: nobody cares about Windows and I want to do it on Windows, natively.
Haskell has ...
4
votes
3answers
581 views
Why is this Haskell SDL line cyan when it should be white?
Below is some code to use SDL with Haskell to draw a diagonal line. I get a CYAN line when the RGB clearly should be white. This is on Ubuntu. Am I doing something wrong?
import qualified ...
7
votes
1answer
509 views
Haskell SDL on OS X
SDL on OS X uses preprocessor tricks to overload main() with their own entry point, written in Objective C, which calls the user's main.
These tricks make the lives of non-C SDL users (e.g: the ...
2
votes
1answer
412 views
trying to install cabal package sdl-mpeg can't find include file smpeg.h
running "cabal install sdl-mpeg"
$ ls -l /usr/include/smpeg/smpeg.h
-rw-r--r-- 1 root root 7503 2008-11-05 18:07 /usr/include/smpeg/smpeg.h
$ cabal install sdl-mpeg
Resolving dependencies...
...
3
votes
2answers
678 views
Linking to SDL and other libraries in Haskell
How to tell ghc to tell ld to link compiled binaries to SDL library?
I have a source.hs :
import Prelude
import Graphics.UI.SDL as SDL
import Data.Maybe
import GHC.Word
import ...