emulation

Browser Emulator API for .NET

Hello, I'm looking for a good browser emulator API for .NET. I've been looking at WatiN, but I really don't need (want!) the GUI, I just want the HTML/DOM-parsing, JavaScript runtime and emulation of state, cache, and everything else. What I'm looking for would work something like this using (var browser = Browser.Create(BrowserType.F...

Basic NES Emulation theory - I'm stuck

In advance, I apologize for the open endedness, and general wishy-washiness of this question, because to be honest my knowledge of the topic is very patchy and I'm finding it hard to even describe my problem. I really didn't want to post, but I'm completely and utterly stuck. I have started a NES emulator. It's interpreted (so no dynami...

Emulate User Activity

I want to emulate user activity in Windows machine like left mouse click and further more I would like to perform a pre-defined steps repeatability. Is there any tool available for that? Please suggest me an easy and nice way to do it? ...

pure python socket module

The socket module in python wraps the _socket module which is the C implementation stuff. As well, socket.socket will take a _sock parameter that must implement the _socket interface. In some regards _sock must be an actual instance of the underlying socket type from _socket since the C code does type checking (unlike pure python). Gi...

Any open-source ARM7 emulators suitable for linking with C?

I have an open-source Atari 2600 emulator (Z26), and I'd like to add support for cartridges containing an embedded ARM processor (NXP 21xx family). The idea would be to simulate the 6507 until it tries to read or write a byte of memory (which it will do every 841ns). If the 6507 performs a write, put the address and data on some of the...

Target-specific emulators for Eclipse in Android?

I'm an Android newbie just getting past "hello world" in Eclipse. I was at the Verizon store today trying out 4 different Android phones for my next upgrade and I realized how DIFFERENT they all are even though they're all 2.1 or 2.2. Short of buying an expensive collection of Android phones from different vendors, is there a way to E...

Emulating PHP page to get response in C#

Hello, I browsed internet but haven't found my answer... as I'm running out of ideas, I'd appreciate some help on this issue. So here it is: I have some PHP code that takes a path to a file and returns a bunch of information that i need. I have the source code (it is open source), and i know my C#. My problem is i want to be able to use ...

please help! how to emulate jre java.awt.MouseEvent in gwt?

i want to emulate java.awt.MouseEvent class, and i define MouseEvent extends InputEvent which extends java.util.EventObject. but when i run this in host mode, i got this error, it shows my InputEvent extends ComponentEvent. why? and how can i fix this? thanks! java.lang.IllegalArgumentException: null source at java.util.EventObjec...

Emulating != in scala using <>

I am trying to emulate != with <> in Scala. implicit def conditional[A](left : A) = new { | def<>[A](right : A) = (left != right) | } What are the case in which this emulation won't work ...

Single precision float emulation in Javascript (float32)

Is it possible to somehow emulate single precision float in Javascript? According to Doug Crockford's blog "Number is 64-bit floating point", but I have to use single one for porting C++ algorithm which calculates single precision float's error. ...