Visual D 0.3.29 features C++ to D conversion wizard

2011-12-03 Thread Rainer Schuetze
Hi, with the recent initiatives to create bindings to C libraries and port C/C++ code to D, I thought the integration into Visual D of some tools written some time ago could be helpful. It proved to be a bit more work than expected to get them in shape, but finally the C++ to D converter

Re: Visual D 0.3.29 features C++ to D conversion wizard

2011-12-03 Thread Adrian
Am 03.12.2011 11:13, schrieb Rainer Schuetze: Hi, with the recent initiatives to create bindings to C libraries and port C/C++ code to D, I thought the integration into Visual D of some tools written some time ago could be helpful. It proved to be a bit more work than expected to get them

Re: Visual D 0.3.29 features C++ to D conversion wizard

2011-12-03 Thread Rainer Schuetze
On 03.12.2011 12:04, Adrian wrote: Am 03.12.2011 11:13, schrieb Rainer Schuetze: Hi, with the recent initiatives to create bindings to C libraries and port C/C++ code to D, I thought the integration into Visual D of some tools written some time ago could be helpful. It proved to be a bit

Re: Visual D 0.3.29 features C++ to D conversion wizard

2011-12-03 Thread Mirko Pilger
i neither see the menu entry nor the command assignment, too. i'm using the vs shell 2008.

Re: Visual D 0.3.29 features C++ to D conversion wizard

2011-12-03 Thread Michal Minich
On 3. 12. 2011 16:02, Mirko Pilger wrote: i neither see the menu entry nor the command assignment, too. i'm using the vs shell 2008. I don't see it either after upgrading from previous version in vs shell 2010

Re: Visual D 0.3.29 features C++ to D conversion wizard

2011-12-03 Thread Rainer Schuetze
I can confirm the problem on another computer. I'll look into it... On 03.12.2011 16:02, Mirko Pilger wrote: i neither see the menu entry nor the command assignment, too. i'm using the vs shell 2008.

Re: Visual D 0.3.29 features C++ to D conversion wizard

2011-12-03 Thread Rainer Schuetze
Should be fixed now, I've replaced the installer. I also noticed that the fonts in the dialogs look ugly on XP (I have tweaked it on Win7), I still have to figure out what fonts VS is using. On 03.12.2011 16:27, Rainer Schuetze wrote: I can confirm the problem on another computer. I'll look

Re: Visual D 0.3.29 features C++ to D conversion wizard

2011-12-03 Thread Vladimir Panteleev
On Sat, 03 Dec 2011 12:13:03 +0200, Rainer Schuetze r.sagita...@gmx.de wrote: C++ to D converter Step 1: Use C++ to D converter on DMD source code Step 2: Integrate ported DMD source code into Visual D for perfect semantic features Step 3: ??? Step 4: Profit! But seriously, great work!

Re: Visual D 0.3.29 features C++ to D conversion wizard

2011-12-03 Thread Mirko Pilger
Should be fixed now, I've replaced the installer. i can confirm this for vs shell 2008 on win xp sp3. i'll give it a shot and feed it some c++ code later this evening. thanks for your work.

gl3n - linear algebra and more for D

2011-12-03 Thread David
Hello, I am currently working on gl3n - https://bitbucket.org/dav1d/gl3n - gl3n provides all the math you need to work with OpenGL, DirectX or just vectors and matrices (it's mainly targeted at graphics - gl3n will never be more then a pure math library). What it supports: * vectors *

Re: gl3n - linear algebra and more for D

2011-12-03 Thread Kiith-Sa
David wrote: Hello, I am currently working on gl3n - https://bitbucket.org/dav1d/gl3n - gl3n provides all the math you need to work with OpenGL, DirectX or just vectors and matrices (it's mainly targeted at graphics - gl3n will never be more then a pure math library). What it supports:

Re: gl3n - linear algebra and more for D

2011-12-03 Thread dsimcha
I don't know much about computer graphics but I take it that a sane design for a matrix/vector library geared towards graphics is completely different from one geared towards general numerics/scientific computing? I'm trying to understand whether SciD (which uses BLAS/LAPACK and expression

Re: gl3n - linear algebra and more for D

2011-12-03 Thread David
Am 04.12.2011 01:38, schrieb dsimcha: I don't know much about computer graphics but I take it that a sane design for a matrix/vector library geared towards graphics is completely different from one geared towards general numerics/scientific computing? I'm trying to understand whether SciD (which

Re: Visual D 0.3.29 features C++ to D conversion wizard

2011-12-03 Thread bearophile
Rainer Schuetze: http://www.dsource.org/projects/visuald/wiki/Tour/CppConversion There is also a command line version available for those not working with Visual Studio. It seems a nice tool. If I try it on this C++ code: enum Foos { A, B }; char *Colors[] = {red, blue, green}; int main()

Re: Visual D 0.3.29 features C++ to D conversion wizard

2011-12-03 Thread Rainer Schuetze
On 04.12.2011 06:30, bearophile wrote: Rainer Schuetze: http://www.dsource.org/projects/visuald/wiki/Tour/CppConversion There is also a command line version available for those not working with Visual Studio. It seems a nice tool. If I try it on this C++ code: enum Foos { A, B }; char