Jump to page: 1 2
Thread overview
Binderoo - we're open sourcing our binding system
Aug 16, 2016
Ethan Watson
Aug 16, 2016
Manu
Aug 16, 2016
Ethan Watson
Aug 16, 2016
Meta
Aug 17, 2016
Ethan Watson
Aug 17, 2016
Arjan
Aug 17, 2016
Daniel Kozak
Aug 17, 2016
Daniel Kozak
Aug 16, 2016
ZombineDev
Aug 16, 2016
Meta
Aug 17, 2016
Ethan Watson
Aug 17, 2016
Meta
Aug 17, 2016
Jacob Carlborg
Aug 17, 2016
Ethan Watson
August 16, 2016
https://github.com/Remedy-Entertainment/binderoo

So I just announced at GDC Europe in my talk. We're open sourcing our binding system.

It's currently a complete reengingeering of the system, and it's incomplete at the moment. It will be documented as the features become more solidified.

I'll also write some more about it once I've had a chance to unwind. The talk seemed to go well at least.
August 16, 2016
On 16 August 2016 at 22:30, Ethan Watson via Digitalmars-d <digitalmars-d@puremagic.com> wrote:
> https://github.com/Remedy-Entertainment/binderoo
>
> So I just announced at GDC Europe in my talk. We're open sourcing our binding system.
>
> It's currently a complete reengingeering of the system, and it's incomplete at the moment. It will be documented as the features become more solidified.
>
> I'll also write some more about it once I've had a chance to unwind. The talk seemed to go well at least.

Huzzah! Really happy it finally got there!
Thanks Ethan! Looking forward to recordings of the talks to emerge.
August 16, 2016
Slides are up at http://www.slideshare.net/EthanWatson5/d-using-an-emerging-language-in-quantum-break


August 16, 2016
On Tuesday, 16 August 2016 at 14:31:54 UTC, Ethan Watson wrote:
> Slides are up at http://www.slideshare.net/EthanWatson5/d-using-an-emerging-language-in-quantum-break

Did you get a decent crowd despite giving your talk at the same time as John Romero?
August 16, 2016
On Tuesday, 16 August 2016 at 12:30:14 UTC, Ethan Watson wrote:
> https://github.com/Remedy-Entertainment/binderoo
>
> So I just announced at GDC Europe in my talk. We're open sourcing our binding system.
>
> It's currently a complete reengingeering of the system, and it's incomplete at the moment. It will be documented as the features become more solidified.
>
> I'll also write some more about it once I've had a chance to unwind. The talk seemed to go well at least.

Nice work! Congrats!
August 16, 2016
On Tuesday, 16 August 2016 at 12:30:14 UTC, Ethan Watson wrote:
> https://github.com/Remedy-Entertainment/binderoo
>
> So I just announced at GDC Europe in my talk. We're open sourcing our binding system.
>
> It's currently a complete reengingeering of the system, and it's incomplete at the moment. It will be documented as the features become more solidified.
>
> I'll also write some more about it once I've had a chance to unwind. The talk seemed to go well at least.

Looking through your slides, I noticed that there's no need to pass `typeof(this)` to GenerateStubsFor.

mixin template GenerateStubsFor()
{
    private alias ThisT = typeof(this);
    pragma(msg, ThisT);
}

struct TestStruct
{
    mixin GenerateStubsFor; //Prints "TestStruct"
}

class TestParent
{
    mixin GenerateStubsFor; //Prints "TestParent"
}

class TestChild: TestParent
{
    mixin GenerateStubsFor; //Prints "TestChild"
}
August 17, 2016
On 2016-08-16 14:30, Ethan Watson wrote:
> https://github.com/Remedy-Entertainment/binderoo
>
> So I just announced at GDC Europe in my talk. We're open sourcing our
> binding system.
>
> It's currently a complete reengingeering of the system, and it's
> incomplete at the moment. It will be documented as the features become
> more solidified.

Windows only or cross-platform?

-- 
/Jacob Carlborg
August 17, 2016
On Tuesday, 16 August 2016 at 17:53:20 UTC, Meta wrote:
> On Tuesday, 16 August 2016 at 12:30:14 UTC, Ethan Watson wrote:
> Looking through your slides, I noticed that there's no need to pass `typeof(this)` to GenerateStubsFor.

Correct. Notice a few slides after that with the BindAllImports mixin that it does exactly what you say. At that point, since this is something of an introduction of the language, it's more about introducing the concept of typeof fully.
August 17, 2016
On Wednesday, 17 August 2016 at 06:27:39 UTC, Jacob Carlborg wrote:
>
> Windows only or cross-platform?

It will be cross platform, but right now I've only developed on Windows. Linux will be next, I have Mint setup at home. I'll likely need an external contributor for PS4, but that could very well be taken care of thanks to some of the people I spoke to after the talk if they decide to use this once it's more fully featured.
August 17, 2016
On Tuesday, 16 August 2016 at 15:31:20 UTC, Meta wrote:
>
> Did you get a decent crowd despite giving your talk at the same time as John Romero?

Estimate of about 80-100 people.

Romero is a nice guy though. http://i.imgur.com/kTrfAZqh.jpg
« First   ‹ Prev
1 2