Questions tagged [replay]
124 questions
0
votes
2 answers
How do I replay a game?
Im creating a program that asks for the user to enter a number from 1-100, the program will tell the user when these numbers are too high or too low, and when they win. When they do win, they are asked if they want to play again or stop. The problem…
user4139413
0
votes
1 answer
Which AS3 physics engine can replay a simulation consistently?
I'm currently using the Nape physics engine for a "Peggle" style game in ActionScript 3.0.
It is very easy to use, and runs smoothly. However, The only difficulty I'm running into with Nape is replaying the exact same simulation.
Even if I supply…

chamberlainpi
- 4,854
- 8
- 32
- 63
0
votes
1 answer
Record and replay UDP packets with timing
I need to implement a way of recording an UDP stream with the purpose of later on replaying that stream as requested. This record and replay must use the same timing (up to a sensible resolution, hardly perceivable by a human user, let's say 10ms):…

David G.Brazales
- 9
- 1
0
votes
3 answers
How can if make my code loop over again if the user says so?
This is my code:
public class Pizza {
public static void main(String[] args) {
int orderDone = 1;
//declare variables
while(orderDone == 1){
int done = 1;
double total2 = 0;
final int…
0
votes
1 answer
How can I code a console-based Java game to replay when the user types in "1"?
First of all, I'd like to say that I am REALLY new to all of this... I've tried learning as much as I can, so apologies if any of my code seems ridiculous or all-over-the-place, but I needed somewhere to start. (By the way, credit to the very base…
user3744312
0
votes
1 answer
Record duplication issue which has been claimed as CSRF attack
We are facing some record duplication issue which has been claimed as CSRF attack.
The Scenario is that an admin user is logged in to the application and adding a record, the data is getting saved in database. The corresponding POST request is…
0
votes
1 answer
Java Vuser on LoadRunner 11.52 not working
Recently I have started testing of some application which are Java based. Now the problem is even if I put a simple statement lik;
lr.output_message("Hello");
nothihng is coming up. I havw already set the classpath and jdk path, no error is coming…

Pulkit
- 3,953
- 6
- 31
- 55
0
votes
1 answer
How to prevent cross site forgery attack (replay attack) in .NET 4.0 MVC web application by using Antiforgery Technique
To prevent cross site forgery attack in .NET 4.0 MVC web application, we have generated CSRF tokens per page by using @Html.AntiForgeryToken(). The token validation is done on each request handling using [ValidateAntiForgeryToken] api provided by…

user3117786
- 1
- 1
0
votes
1 answer
Asp.Net forms authentication replay attack
We are getting hit with a scenario where a user logs off and previous good session cookie ( including sliding time window) is replayed and our code jumps right to the requested page as the user. We are not maintaining session state in the server. …

weidson
- 71
- 5
0
votes
1 answer
Remove item from Replay Observable
Imagine you have a replay observable, created through one of the Replay overloads.
Is there a variant of Replay that produces a replay observable with a method that lets me remove an item/message/element from the replay buffer?
I need the replay…

derabbink
- 2,419
- 1
- 22
- 47
0
votes
1 answer
Where is the global memory replay overhead coming from?
Running the code below to write 1 GB in global memory in the NVIDIA Visual Profiler, I get:
- 100% storage efficiency
- 69.4% (128.6 GB/s) DRAM utilization
- 18.3% total replay overhead
- 18.3% global memory replay overhead.
The memory writes are…

coder
- 11
- 2
0
votes
2 answers
How to properly add "Replay" functionality to a self-preloaded Flash movie?
I made a Flash project in FlashDevelop to create an Ad.
The Preloader is setup by making use of the Additional Compiler argument:
-frame=NameOfLabel,NameOfMainClass
My main class is simply called "Main", at the top / default package level.
So frame…

chamberlainpi
- 4,854
- 8
- 32
- 63
0
votes
1 answer
Prevent replay attacks with Public/Private Key-Encryption of HTTP GET Parameters using Mcrypt and PHP
I want to create a a game application, for that i want the client to send to server scores and other information that should be encrypted.
I understood that there is a way with mcrypt to encrypt data with public and private keys. so the application…

ufk
- 30,912
- 70
- 235
- 386
0
votes
1 answer
Get html from element from iFrame every 10 seconds
So i've been looking around for a while for a possible solution to make a javascript, jquery which searches in the iFrame for a certain class or id element. Then takes out the html inside of it. (example. Here's a link ). then makes…

user1925371
- 33
- 2
- 6
0
votes
1 answer
XNA NAudio WaveChannel32 print line when replay end
I'm using NAudio WaveChannel32 to replay recorded sound, now I wish to print some lines automatically when the Replay has finished.
So in the XNA Update function, it's like :
if(*Replay has finished*)
// Do Something
else
//Do some other…

Jeff Tung
- 99
- 2
- 10