Jump to page: 1 2
Thread overview
Are there any 2D games libraries available for D2?
Feb 19, 2015
Kingsley
Feb 19, 2015
extrawurst
Feb 19, 2015
extrawurst
Feb 19, 2015
stewarth
Feb 19, 2015
Kingsley
Feb 20, 2015
Kingsley
Feb 20, 2015
Jeremy DeHaan
Feb 20, 2015
Gan
Feb 20, 2015
Namespace
Feb 20, 2015
stewarth
Feb 20, 2015
Jeremy DeHaan
Feb 20, 2015
Gan
Feb 20, 2015
Jeremy DeHaan
Feb 25, 2015
Kingsley
Feb 26, 2015
Dmitry
Feb 20, 2015
Russel Winder
Feb 20, 2015
Mengu
Feb 20, 2015
vbnjk
Feb 20, 2015
Jacob Carlborg
February 19, 2015
Hi

I'm looking for a 2D games library in D2 similar to gosu from ruby: http://www.libgosu.org/ or ray: https://github.com/Mon-Ouie/ray

Does such a thing exist?

--K
February 19, 2015
On Thursday, 19 February 2015 at 23:32:45 UTC, Kingsley wrote:
> Hi
>
> I'm looking for a 2D games library in D2 similar to gosu from ruby: http://www.libgosu.org/ or ray: https://github.com/Mon-Ouie/ray
>
> Does such a thing exist?
>
> --K

Maybe one of these works for you.

~Stephan
February 19, 2015
On Thursday, 19 February 2015 at 23:35:17 UTC, extrawurst wrote:
> On Thursday, 19 February 2015 at 23:32:45 UTC, Kingsley wrote:
>> Hi
>>
>> I'm looking for a 2D games library in D2 similar to gosu from ruby: http://www.libgosu.org/ or ray: https://github.com/Mon-Ouie/ray
>>
>> Does such a thing exist?
>>
>> --K
>
> Maybe one of these works for you.
>
> ~Stephan

And now with the link:
http://wiki.dlang.org/Game_Development_and_Multimedia_Libraries

XD
February 19, 2015
On Thursday, 19 February 2015 at 23:36:13 UTC, extrawurst wrote:
> On Thursday, 19 February 2015 at 23:35:17 UTC, extrawurst wrote:
>> On Thursday, 19 February 2015 at 23:32:45 UTC, Kingsley wrote:
>>> Hi
>>>
>>> I'm looking for a 2D games library in D2 similar to gosu from ruby: http://www.libgosu.org/ or ray: https://github.com/Mon-Ouie/ray
>>>
>>> Does such a thing exist?
>>>
>>> --K
>>
>> Maybe one of these works for you.
>>
>> ~Stephan
>
> And now with the link:
> http://wiki.dlang.org/Game_Development_and_Multimedia_Libraries
>
> XD

I use Dgame which has a really nice and simple interface

http://rswhite.de/dgame4/

From the web page:

Dgame is a 2D framework which is based on the SDL and OpenGL, and is designed for the D programming language. The design is based on Pygame and as well on the SFML from the C++ programming language.

Cheers,
Stew
February 19, 2015
> I use Dgame which has a really nice and simple interface
>
> http://rswhite.de/dgame4/
>
> From the web page:
>
> Dgame is a 2D framework which is based on the SDL and OpenGL, and is designed for the D programming language. The design is based on Pygame and as well on the SFML from the C++ programming language.
>
> Cheers,
> Stew

I'm looking at DGame - I'm on osx - so I guess I have to build all the dependencies myself <sigh> - Once I get it installed and working - it looks like it may be enough for what I want.

I guess I'll have to make it work with dub myself to make it easier to get started with.

February 20, 2015
On Thursday, 19 February 2015 at 23:59:14 UTC, Kingsley wrote:
>> I use Dgame which has a really nice and simple interface
>>
>> http://rswhite.de/dgame4/
>>
>> From the web page:
>>
>> Dgame is a 2D framework which is based on the SDL and OpenGL, and is designed for the D programming language. The design is based on Pygame and as well on the SFML from the C++ programming language.
>>
>> Cheers,
>> Stew
>
> I'm looking at DGame - I'm on osx - so I guess I have to build all the dependencies myself <sigh> - Once I get it installed and working - it looks like it may be enough for what I want.
>
> I guess I'll have to make it work with dub myself to make it easier to get started with.

DGame has a dependency on Derelict 3 - but going to the link provided says that project is no longer maintained and doesn't work with the latest DMD compiler. It points to a new location where there are multiple different Derelict libraries - I'm hoping DGame will work with one of those still.

February 20, 2015
On Friday, 20 February 2015 at 00:07:20 UTC, Kingsley wrote:
> On Thursday, 19 February 2015 at 23:59:14 UTC, Kingsley wrote:
>>> I use Dgame which has a really nice and simple interface
>>>
>>> http://rswhite.de/dgame4/
>>>
>>> From the web page:
>>>
>>> Dgame is a 2D framework which is based on the SDL and OpenGL, and is designed for the D programming language. The design is based on Pygame and as well on the SFML from the C++ programming language.
>>>
>>> Cheers,
>>> Stew
>>
>> I'm looking at DGame - I'm on osx - so I guess I have to build all the dependencies myself <sigh> - Once I get it installed and working - it looks like it may be enough for what I want.
>>
>> I guess I'll have to make it work with dub myself to make it easier to get started with.
>
> DGame has a dependency on Derelict 3 - but going to the link provided says that project is no longer maintained and doesn't work with the latest DMD compiler. It points to a new location where there are multiple different Derelict libraries - I'm hoping DGame will work with one of those still.


Chiming in with my own library. https://github.com/Jebbs/DSFML

Things are a bit of a mess, but I'm gearing up for a release soon and things will be all nice and tidy and structured.
February 20, 2015
On Friday, 20 February 2015 at 04:52:29 UTC, Jeremy DeHaan wrote:
> On Friday, 20 February 2015 at 00:07:20 UTC, Kingsley wrote:
>> On Thursday, 19 February 2015 at 23:59:14 UTC, Kingsley wrote:
>>>> I use Dgame which has a really nice and simple interface
>>>>
>>>> http://rswhite.de/dgame4/
>>>>
>>>> From the web page:
>>>>
>>>> Dgame is a 2D framework which is based on the SDL and OpenGL, and is designed for the D programming language. The design is based on Pygame and as well on the SFML from the C++ programming language.
>>>>
>>>> Cheers,
>>>> Stew
>>>
>>> I'm looking at DGame - I'm on osx - so I guess I have to build all the dependencies myself <sigh> - Once I get it installed and working - it looks like it may be enough for what I want.
>>>
>>> I guess I'll have to make it work with dub myself to make it easier to get started with.
>>
>> DGame has a dependency on Derelict 3 - but going to the link provided says that project is no longer maintained and doesn't work with the latest DMD compiler. It points to a new location where there are multiple different Derelict libraries - I'm hoping DGame will work with one of those still.
>
>
> Chiming in with my own library. https://github.com/Jebbs/DSFML
>
> Things are a bit of a mess, but I'm gearing up for a release soon and things will be all nice and tidy and structured.

I really want to check out DGame but I suggest withholding from it until it becomes actively maintained again.

I'm using DSFML and it is one of the easiest. Though I had strange issues like high ram usage and text not rendering. Though the ease of use and performance is phenomenal.
February 20, 2015
On Friday, 20 February 2015 at 07:12:34 UTC, Gan wrote:
> On Friday, 20 February 2015 at 04:52:29 UTC, Jeremy DeHaan wrote:
>> On Friday, 20 February 2015 at 00:07:20 UTC, Kingsley wrote:
>>> On Thursday, 19 February 2015 at 23:59:14 UTC, Kingsley wrote:
>>>>> I use Dgame which has a really nice and simple interface
>>>>>
>>>>> http://rswhite.de/dgame4/
>>>>>
>>>>> From the web page:
>>>>>
>>>>> Dgame is a 2D framework which is based on the SDL and OpenGL, and is designed for the D programming language. The design is based on Pygame and as well on the SFML from the C++ programming language.
>>>>>
>>>>> Cheers,
>>>>> Stew
>>>>
>>>> I'm looking at DGame - I'm on osx - so I guess I have to build all the dependencies myself <sigh> - Once I get it installed and working - it looks like it may be enough for what I want.
>>>>
>>>> I guess I'll have to make it work with dub myself to make it easier to get started with.
>>>
>>> DGame has a dependency on Derelict 3 - but going to the link provided says that project is no longer maintained and doesn't work with the latest DMD compiler. It points to a new location where there are multiple different Derelict libraries - I'm hoping DGame will work with one of those still.
>>
>>
>> Chiming in with my own library. https://github.com/Jebbs/DSFML
>>
>> Things are a bit of a mess, but I'm gearing up for a release soon and things will be all nice and tidy and structured.
>
> I really want to check out DGame but I suggest withholding from it until it becomes actively maintained again.
>
> I'm using DSFML and it is one of the easiest. Though I had strange issues like high ram usage and text not rendering. Though the ease of use and performance is phenomenal.

I will try to fix the Derelict 3 mess this weekend. Putting it on DUB will take some more time, which I don't have currently, because I have my exams right now.
February 20, 2015
On Thu, 2015-02-19 at 23:32 +0000, Kingsley via Digitalmars-d wrote:
> Hi
> 
> I'm looking for a 2D games library in D2 similar to gosu from ruby:
>  http://www.libgosu.org/or ray:
> https://github.com/Mon-Ouie/ray

I got totally confused there for a moment: Gosu is a programming language for the JVM, and nothing to do with Ruby.

-- 
Russel. ============================================================================= Dr Russel Winder      t: +44 20 7585 2200   voip: sip:russel.winder@ekiga.net 41 Buckmaster Road    m: +44 7770 465 077   xmpp: russel@winder.org.uk London SW11 1EN, UK   w: www.russel.org.uk  skype: russel_winder


« First   ‹ Prev
1 2