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.


Messages - RobotGymnast

Pages: 1 2 3 [4]
46
D / How to set font color?
« on: January 30, 2011, 10:51:57 pm »
Ah, sorry. The reason it wasn't working for me was because of a name conflict I'd created, not because the .color property wasn't working. Thanks

47
D / How to set font color?
« on: January 30, 2011, 09:16:37 pm »
How does one set the color of text?

48
D / SVN DSFML2 Net broken?
« on: January 30, 2011, 09:15:57 pm »
Ah, alright. Thanks for the info!

49
D / SVN DSFML2 Net broken?
« on: January 30, 2011, 07:39:04 pm »
Building the latest DSFML2 into libraries yields errors in socketselctor.d, specifically in SocketSelector.add, SocketSelector.remove, and SocketSelector.GetSocketsReady, which all appear to be template functions, but aren't actually given template parameters. It's giving an "undefined type T" error.

50
D / DSFML broken
« on: January 30, 2011, 06:22:40 pm »
Quote from: "Trass3r"
That's because DSFML1 on the download page is targeted at D1 (and quite outdated).
Only use the svn version and SFML2.


Where can that be found? It's not immediately apparent to me while browsing the repository.

Edit: Nevermind, found it under branches. Thanks

51
D / How to build without DSSS?
« on: January 30, 2011, 05:39:47 pm »
DSSS gives nonsensical, unhelpful error messages whenever I try to use it for anything. To build any of the libraries can I simply substitute
Code: [Select]

dmd -lib [source files]


And then copy & rename the resulting library?

52
D / DSFML broken
« on: January 30, 2011, 05:35:07 pm »
Quote from: "CyberShadow"
In the top level of the working directory, type:
svn diff > patch.diff


Euch I since discovered that TortoiseSVN doesn't appear to wrap the SVN executables, so I can't use typical SVN binaries separately from Tortoise. Figured out how to do it through the GUI, though, and put the diff on pastebin. Thanks!

53
D / DSFML broken
« on: January 30, 2011, 05:14:18 pm »
DSFML fails to compile using dmd v2.051. This means the SVN code and the version on the download page.

I've fixed code so that at least dsfml-window builds; diff uploaded at http://pastebin.com/djtz4P9g.

The main issues had to do with string literals not being equivalent to
Code: [Select]
char[] but rather
Code: [Select]
immutable char[] Also,

Code: [Select]
this inside a member function is a reference, not a pointer.

54
SFML website / SVN not working?
« on: January 29, 2011, 03:01:03 pm »
Quote from: "Walker"
Thank you, Mr. Assange, for continuing to expose important information to us all. :D


Ditto. Thanks! In retrospect, I should have realized that, due to sourceforge emailing me and telling me they're under attack =P.

55
SFML website / SVN not working?
« on: January 29, 2011, 05:30:55 am »
I keep getting an instantaneous "The connection was reset" message when I try to access the svn through the web interface. Using IE, I get "The page cannot be displayed."

Any particular reason?

56
D / Importing DSFML modules gives failures
« on: January 27, 2011, 03:34:25 am »
There are a few issues with the DSFML modules in the DSFML svn. I'm compiling with the latest dmd (v2.051) and getting issues in videomode.d : 103, where

Code: [Select]

bool opEquals(VideoMode other)


should be

Code: [Select]

const bool opEquals(ref const VideoMode other)


And in window.d

Code: [Select]

this(VideoMode mode, char[] title, Style windowStyle = Style.RESIZE | Style.CLOSE, WindowSettings settings = WindowSettings())


should be

Code: [Select]

this(VideoMode mode, string title, Style windowStyle = Style.RESIZE | Style.CLOSE, WindowSettings settings = WindowSettings())

Pages: 1 2 3 [4]
anything