How do I pass beyond cave 7 of digger .net ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
Is there anyone familiar with digger .net, I can't get passed cave 7,
how many caves are there?
Thanks in advance
 
The source code to digger uses a batch file to make the exe as follows

%SystemRoot%\Microsoft.net\Framework\v1.0.3705\csc.exe /target:winexe
/out:Digger.exe Digger.cs /win32icon:Application.ico
/resource:Application.ico /resource:Font.png /resource:Level.bin
/resource:Sprite.png %1

I want to create a solution project so that I can start changing the code
so batch makes are not my cup off tea.

Any ideas to convert?
I tried to simple create a c# app, add all the files of digger as
an "existing item", and deleting the other .cs file that we get
from the wizard, but this didn't quite work.

The files are as follows:

22/11/2003 04:25 3,638 Application.ico
06/06/2007 10:38 165 Build.bat
06/06/2007 12:44 21,157 Digger.cs
06/06/2007 10:38 49,152 Digger.exe
26/11/2000 01:26 1,312 Font.png
09/02/1996 19:23 4,680 Level.bin
28/07/2000 18:36 1,846 Sprite.png

and build.bat is as follows:

%SystemRoot%\Microsoft.net\Framework\v1.0.3705\csc.exe /target:winexe
/out:Digger.exe Digger.cs /win32icon:Application.ico
/resource:Application.ico /resource:Font.png /resource:Level.bin
/resource:Sprite.png %1



Thanks in advance.
 
There seems to be some annoying delay/repeat problem with the
arrow keys. Sometime we press and nothing happend, sometimes
we press and digger moves twice
 
It seems to me that the problem lies with

protected override void OnKeyDown(KeyEventArgs e)

Is it possible that sometimes this function will not be called even

when a key is pressed?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top