Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - TheDuceCat

Pages: [1]
1
Window / MouseWheelEvent Delta Bug
« on: February 19, 2013, 10:18:40 pm »
I noticed that, on Windows, the MouseWheelEvent won't fire if the delta is -1. Anything positive is registered, as is any negative value less than -1, but nothing seems to happen when I roll the mouse wheel back slow enough.

2
General discussions / Pixel Engine
« on: September 30, 2012, 05:15:55 pm »
Hey. I recently started playing Cortex Command http://www.datarealms.com/. I really like the game, but I was wondering how they implemented that pixel terrain engine they have. Do any of you know how something like this could be implemented. I'm kind of confused on how it works.

3
General / What is this?
« on: May 28, 2012, 01:38:45 am »
In the header for many of the classes in the graphics module, it says SFML_GRAPHICS_API before the class name. What is this?

4
General / Creating Libraries with SFML
« on: May 28, 2012, 01:06:19 am »
If I wanted to create a library to add some extra functionality to SFML, how would I go about doing that? How would my library link to the SFML the user of my library is linking to?

5
General / Why .lib and .dll?
« on: May 20, 2012, 06:33:57 am »
Why does SFML require you to link .lib files and have the .dll files there? Whereas something like Box2D requires only the .lib files.

6
DotNet / Getting SFML to work on Mono
« on: February 14, 2012, 04:45:13 am »
I'm testing out SFML on Mono on my MacBook Pro, but it can't find the csfml-window file, no matter what I do. I tried using a dll.config, using the linux files, the os x files, the windows dll's, nothing works! I can't get this working!

Edit:

Code: [Select]

Unhandled Exception: System.DllNotFoundException: csfml-window
  at (wrapper managed-to-native) SFML.Window.Window:sfWindow_Create (SFML.Window.VideoMode,string,SFML.Window.Styles,SFML.Window.WindowSettings)
  at SFML.Window.Window..ctor (VideoMode mode, System.String title, Styles style, WindowSettings settings) [0x00000] in <filename unknown>:0
  at SFML.Window.Window..ctor (VideoMode mode, System.String title) [0x00000] in <filename unknown>:0
  at SFMLTest.MainClass.Main (System.String[] args) [0x00000] in <filename unknown>:0
[ERROR] FATAL UNHANDLED EXCEPTION: System.DllNotFoundException: csfml-window
  at (wrapper managed-to-native) SFML.Window.Window:sfWindow_Create (SFML.Window.VideoMode,string,SFML.Window.Styles,SFML.Window.WindowSettings)
  at SFML.Window.Window..ctor (VideoMode mode, System.String title, Styles style, WindowSettings settings) [0x00000] in <filename unknown>:0
  at SFML.Window.Window..ctor (VideoMode mode, System.String title) [0x00000] in <filename unknown>:0
  at SFMLTest.MainClass.Main (System.String[] args) [0x00000] in <filename unknown>:0

Pages: [1]