localpcguy / cbloader

Automatically exported from code.google.com/p/cbloader
1 stars 0 forks source link

Pipeline is not debugging any progress. #2

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Starting CBloader.exe
2.
3.

What is the expected output? What do you see instead?

The program running and confirming or closing afterwards. I see 2 exacly the 
same errors (can not initializing (0x80000003) and then) and then the message 
"Pipeline is not debugging any progress. Waiting for a debug event will hang".

Original issue reported on code.google.com by relo...@gmail.com on 12 Nov 2010 at 6:02

GoogleCodeExporter commented 9 years ago
May I add (yea relo999, agian) That I have a normal 32 bit PC so maybe its the 
directory it seeks (mine: C:\Program Files\Wizards of the Coast\Character 
Builder\CharBuilderFull_p)

Original comment by relo...@gmail.com on 12 Nov 2010 at 8:36

GoogleCodeExporter commented 9 years ago
Also It creates the 3 files only nothing more

Original comment by relo...@gmail.com on 12 Nov 2010 at 9:06

GoogleCodeExporter commented 9 years ago
Same here (Windows XP)

Original comment by kilpa...@gmail.com on 14 Nov 2010 at 5:00

GoogleCodeExporter commented 9 years ago
Yea, mine is XP to. (Forgot to mention that)

Original comment by relo...@gmail.com on 14 Nov 2010 at 11:32

GoogleCodeExporter commented 9 years ago
I may have found the coding where the problem is hiding, but I am no programmer 
so I am not sure.

{
if (usePatchedDLL)
{
if (!File.Exists(CORE_FILENAME) || File.GetLastWriteTime(ENCRYPTED_FILENAME) > 
File.GetLastWriteTime(CORE_FILENAME))
extractFile();
mergeFiles();

//// start character builder
PEFile file = new PEFile(LOADED_FILE);
NativePipeline np = new NativePipeline();
NativeDbgProcess proc = np.CreateProcessDebug(EXECUTABLE, "");
while (true)
{
NativeEvent ne = np.WaitForDebugEventInfinite();
if (ne.EventCode == NativeDebugEventCode.LOAD_DLL_DEBUG_EVENT)
{
DllBaseNativeEvent ev = (DllBaseNativeEvent)ne;
if (ev.Module.Name.Contains(LOADED_FILE))
{
patchMemory(file, ev, (uint)proc.Id);
np.ContinueEvent(ne);
np.Detach(proc);
break;
}
}
np.ContinueEvent(ne);
}
}

BTW is there a program to look in to the XML coding with colors (so its a bit 
more easier then notepad)?

Original comment by relo...@gmail.com on 14 Nov 2010 at 11:59

GoogleCodeExporter commented 9 years ago
I believe Frontpage will show you the colors

Original comment by macphers...@gmail.com on 15 Nov 2010 at 9:35

GoogleCodeExporter commented 9 years ago
Thank you, now only if I could run this program I am truely satisfied

Original comment by relo...@gmail.com on 15 Nov 2010 at 9:41

GoogleCodeExporter commented 9 years ago
I have found more people with this problem and it seems it is related to 32 bit 
(you get the error on that)

Original comment by relo...@gmail.com on 17 Nov 2010 at 8:27

GoogleCodeExporter commented 9 years ago
I'm also using a 32bit VM.

Is there anything I/we can do to help debug it?

Original comment by kilpa...@gmail.com on 17 Nov 2010 at 2:02

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
i am having the same issue as well and i run windows xp 32bit

Original comment by venigm...@gmail.com on 18 Nov 2010 at 7:29

GoogleCodeExporter commented 9 years ago
I have the same error, and I'm also running XP.

Original comment by Nyy...@gmail.com on 19 Nov 2010 at 9:35

GoogleCodeExporter commented 9 years ago
Having the same problem, also running WinXP.

Original comment by Kalleria...@gmail.com on 19 Nov 2010 at 11:19

GoogleCodeExporter commented 9 years ago
i sure hope they work on this soon...

Original comment by venigm...@gmail.com on 20 Nov 2010 at 6:58

GoogleCodeExporter commented 9 years ago
I have the issue with XP 64 bit, so it's not a 32 bit issue, it's an XP issue.

Original comment by whynoth...@gmail.com on 21 Nov 2010 at 5:49

GoogleCodeExporter commented 9 years ago
I'm investigating this issue now. I might not be able to make any progress 
until I can get my hands on a 32 bit VM. Just letting you know this is being 
worked on.

Original comment by jeff.h...@gmail.com on 21 Nov 2010 at 7:19

GoogleCodeExporter commented 9 years ago
I have uploaded a new version of the application. V1.0.1 It should now be 
available on the downloads page. If one of you could confirm that this fixes 
your problem it would be greatly apprecated. 

Original comment by jeff.h...@gmail.com on 22 Nov 2010 at 5:11

GoogleCodeExporter commented 9 years ago
Yeah, this fixes the XP issue for both XP machines I test on.

Original comment by YeOldeSt...@gmail.com on 22 Nov 2010 at 6:09

GoogleCodeExporter commented 9 years ago
Works like a charm, thank you. I'll do some more in-depth testing a bit later, 
and see if it coughs up any more errors.

Original comment by Kalleria...@gmail.com on 22 Nov 2010 at 1:05

GoogleCodeExporter commented 9 years ago
thanks mate!

Original comment by venigm...@gmail.com on 22 Nov 2010 at 4:15

GoogleCodeExporter commented 9 years ago

Original comment by jeff.h...@gmail.com on 22 Nov 2010 at 4:49