Tagged Questions

Detection of on screen elements colliding

learn more… | top users | synonyms

27
votes
4answers
574 views

Algorithm to find solution to puzzle

I am trying to make a game where a player have to find his way from Start to End on the Game Board. ![Game board][1] As you see this Game Board contains a bunch of red circular obstacles. To win the ...
17
votes
7answers
4k views

What is a good 64bit hash function in Java for textual strings?

I'm looking for a hash function that: Hashes textual strings well (e.g. few collisions) Is written in Java, and widely used Bonus: works on several fields (instead of me concatenating them and ...
11
votes
10answers
1k views

Algorithm for Gift Card Codes

I recently posted this question about codes for a gift-card-like voucher that users can redeem online. I wanted to find the best tradeoff between large keyspace, low guessability, and human ...
10
votes
4answers
966 views

Collisions when generating UUIDs in Javascript

This relates to this question. I am using this answer to generate UUID in JavaScript: 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { var r = Math.random()*16|0, v = c == ...
9
votes
1answer
2k views

Quadtree for 2D collision detection

I'm trying to use a quadtree for 2D collision detection, but I'm a little stumped on how to implement it. First of all, I'd have a quadtree which contains four subtrees (one representing each ...
9
votes
3answers
2k views

Android id collision mechanism for R.java

We all know that when generating an id for Android using @+id/foo Android creates for us an entry in R.java like: public static final class id { public static final int foo=0x7f060005; } ...
7
votes
5answers
412 views

How to write an elegant collision handling mechanism?

I'm in a bit of a pickle: say I'm making a simple, 2D, Zelda-like game. When two Objects collide, each should have a resulting action. However, when the main character collides with something, his ...
7
votes
3answers
1k views

How to resolve Rails model namespace collision

The story so far: I have a rails app with a model named "Term". All is well until trying to install Cucumber. Upon running rake cucumber I get Term is not a class (TypeError) This happens ...
6
votes
1answer
129 views

Having some issues with making pacman?

Edit: Totally forgot to mention I'm coding in Java I'm having a real hard time making some kind of detection system or some way to make my pacman sprite/character move smoothly through my board in ...
6
votes
2answers
244 views

Pixel Collision Tracing

I have a character that's say, 20 by 10 pixels large and I have a collision map based on pixels (think worms). What's the best way to trace collision for the character given a velocity greater than ...
6
votes
2answers
469 views

How to deal with symbol collisions between statically linked libraries?

One of the most important rules and best practices when writing a library, is putting all symbols of the library into a libarary specific namespace. C++ makes this easy, due to the namespace keyword. ...
6
votes
5answers
911 views

C++ 2D pixel perfect collision detection libraries?

what are the libraries available to do this which integrate with SDL and QT4 . Are there any existing packages in SDL or QT which allow for easy implementation of this?. I am looking for for an easy ...
6
votes
2answers
796 views

How to create a level with curved lines with cocos2d + Box2d on the iphone?

I'd like to create a game that has levels such as this: http://img169.imageshack.us/img169/7294/picdq.png The Player moves "flies" through the level and mustn't collide with the walls. How can I ...
5
votes
3answers
158 views

Java - Collision Detection with MANY objects

I'm rather new to Java, I mainly focused on the Graphics aspects to create a little 2DGame. I've watched/looked at several tutorials but none of them were that pleasing :x I already have a player(a ...
5
votes
2answers
1k views

2D colliding n-body simulation (fast Collision Detection for large number of balls)

I want to write a program for simulating a motion of high number (N = 1000 - 10^5 and more) of bodies (circles) on 2D plane. All bodies have equal size and the only force between them is elastic ...
4
votes
2answers
185 views

What type of collision resolution is chosen for HashTable/Dictionary implementation in .net?

As we know there are 2 classical strategies to collision resolution: Separate chaining and Open addressing. I'm wondering which one was chosen for HashTable/Dictionary in .net. Or there were used ...
4
votes
5answers
441 views

Angle that a moving ball will bounce off of an inert ball

Let there be two balls, one of which is moving about in the Cartesian coordinate plane, while the other is stationary and immobile. At some point, the moving ball collides with the inert ball. ...
4
votes
4answers
723 views

Sliding AABB collision - getting stuck on edges

I'm working on a 3D tile based game and I'm using AABB collision detection. For every cube that the player is intersecting, I find the axis along which the player is intersecting the cube the least, ...
4
votes
1answer
341 views

Processing velocity-vectors during collision as neatly as possible

I'm trying to create a good way to handle all possible collisions between two objects. Typically one will be moving and hitting the other, and should then "bounce" away. What I've done so far (I'm ...
4
votes
2answers
279 views

I'm trying to get basic collision dynamics working

I've simplified things down to cubes/a single cube colliding with an infinite-mass rectangle and the following code: The problem is, the boxes tend to spin too much and get stuck together spinning ...
4
votes
4answers
1k views

Django slugified urls - how to handle collisions?

I'm currently working on a toy project in Django. Part of my app allows users to leave reviews. I'd like to take the title of the review and slugify it to create a url. So, if a user writes a ...
4
votes
1answer
4k views

Please explain murmur hash?

I just found out murmur hash, seems to be the fastest known and quite collision resistance. I tried to dig more about the algorithm or implementation in full source code, but I am having difficulty ...
4
votes
5answers
5k views

Please recommend a JQuery plugin that handles collision detection for draggable elements

We're using the Draggable JQuery UI plugin and need to disallow overlapping among our elements. We could write some collision detection ourselves but would prefer to use a tested package. Any ...
3
votes
1answer
50 views

Collision Detection using Box2d(for Android)?

Can someone explain the in what way works the collision detection using box2d for android. I cannot understand in what way works BBContactListener. BBContactListener listener = new ...
3
votes
3answers
120 views

Checking Collisions In 2D Platformer With Tiles

My team and I are developing a 2D platformer with C++/SDL/OpenGL, and we already defined a collision system, but we have a problem checking collisions with the tilemap. The tiles of the tilemap are ...
3
votes
1answer
144 views

(Python + pygame) collision detection with rects

import pygame import random red = [255,0,0] green = [0,255,0] blue = [0,0,255] white = [255,255,255] black = [0,0,0] UP = [0,-1] DOWN = [0,1] LEFT = [-1,0] RIGHT = [1,0] NOTMOVING = [0,0] #constants ...
3
votes
3answers
186 views

Unity3D Which way of doing 2D collision is faster?

I am doing a 2D game where enemies will shoot at my player. There are two ways to do collision of bullets: Add colliders to bullets. Add rigidbody to player. Use OnCollision() way to do collision ...
3
votes
1answer
117 views

Platformer collision?

I've been trying to figure out now if i have a map in my platformer game and i want my character be able to jump on some platform for example.. Is there any easy way to tell the game where the ...
3
votes
1answer
174 views

Getting the Protrusion and Collision Data From Jquery Collision

I'm using Jquery Draggable Collision (found here) and I am trying to resize the draggable area (blue square, in my JSFiddle) via a simple toggleClass() right now. Once it animates(gets bigger due to ...
3
votes
3answers
1k views

XNA Collision Detection in Platformer

I've been working on a simple 2D platformer engine. So far I've got a sprite moving around (not yet animated), and 3 platforms for a "Jetpac" type game (old ZX Spectrum game - I'm sure if you google ...
3
votes
1answer
104 views

A suitable technology for handling a large number of file uploads

I am working in a site that receives about 500 photo uploads per day from its users. Although this is not a really high number, we are experiencing some collisions between different uploads. Some ...
3
votes
1answer
2k views

2D Platformer Collision Handling

I am trying to create a 2D platformer (Mario-type) game and I am some having some issues with handling collisions properly. I am writing this game in C++, using SDL for input, image loading, font ...
3
votes
1answer
1k views

Box2d As3 contact listener problem

I'm having a problem with the box2d as3 b2ContactListener class. I have a class named ContactListener that extends b2ContactListener and overrides the PostSolve method. PostSolve takes 2 parameters, ...
3
votes
1answer
156 views

Resolving C++ Name Collision

InitializeQTML is a function in QTML.h. I'm writing a wrapper and I would like to use the name InitializeQTML for the wrapper function: #include <QTML.h> public class QuickTime { public: ...
3
votes
2answers
566 views

Collision Avoidance Example or Help

I have been trying to find a collision avoidance example that I can adapt and use for a game I am working on. It will be used to model a skier's movements to avoid trees on the hill. I am basing the ...
3
votes
3answers
521 views

Looking for a good 64 bit hash for file paths in UTF16

I have a Unicode / UTF-16 encoded path. the path delimiters is U+005C '\'. The paths are null-terminated root relative windows file system paths, e.g. "\windows\system32\drivers\myDriver32.sys" I ...
3
votes
1answer
604 views

Pseudocode for Swept AABB Collision

I think swept means determining if objects will collide at some point, not just whether they are currently colliding, but if I'm wrong tell me. I have objects with bounded boxes that are aligned on ...
3
votes
1answer
259 views

Solving a cubic to find nearest point on a curve to a point

Ok, I have a projectile that has its position defined such that: a.x = initialX + initialDX * time; a.y = initialY + initialDY * time + 0.5 * gravtiy * time^2; I want to be able to predict which ...
3
votes
2answers
582 views

Sphere - sphere collision detection -> reaction

I need to make an algorithm that detects when two spheres collide, and, the direction that wich one will take an instant after the collision. Let say, Imagine like when you open your table in a pool ...
3
votes
2answers
287 views

Perfect circle to perfect circle and Perfect circle to straight line collision HANDLING in Java

I am a newbie at Java, but decided to make a application that has a bunch of balls bouncing around. Please keep in mind that I know almost nothing about normals, which I have seen mentioned a lot in ...
3
votes
2answers
78 views

Unix directory structure: managing file name collision

Usually every time `make install' is run, files are not put in a specific directory like /usr/prog1. Instead, the files are put in directories where files from other programs are already in like ...
3
votes
8answers
1k views

Surface Detection in 2d Game?

I'm working on a 2D Platform game, and I was wondering what's the best (performance-wise) way to implement Surface (Collision) Detection. So far I'm thinking of constructing a list of level objects ...
3
votes
7answers
963 views

Bouncing a ball off a surface

I'm currently in the middle of writing a game like Breakout, and I was wondering how I could properly bounce a ball off a surface. I went with the naive way of rotating the velocity by 90 degrees, ...
3
votes
5answers
530 views

How do I avoid name collision with macros defined in Windows header files?

I have some C++ code that includes a method called CreateDirectory(). Previously the code only used STL and Boost, but I recently had to include <windows.h> so I could look-up ...
3
votes
3answers
385 views

How well does .NET dictionary resolve collisions?

I have a problem with a custom object that needs to be keyed for a table. I need to generate a unique numeric key. I'm having collision problems and I'm wondering if I can leverage a dictionary to ...
3
votes
2answers
137 views

Shortest route to intersection

I asked this question about 2 months ago but found none of the answers to be helpful enough. So I am giving it another shot. I think it was my fault not describing it well enough. So lets try again. ...
3
votes
4answers
6k views

how to use cocos2d sprite collision?

how do i start to implement a class for sprite collision
2
votes
2answers
46 views

How to “round” a 2D Vector to nearest 15 degrees

I'm working on a simple game and I'm trying to simplify part of the 2D collision reaction in the game. When certain objects hit walls, I'm calculating a collision normal (collisionPoint - ...
2
votes
3answers
67 views

Java best practice for avoiding delimiter collisions?

I have a number of Strings that I have to store in a DB that I'd like to split using String.split method later. However, I'm concerned about delimiter collisions since at least one field could ...
2
votes
1answer
56 views

color ball collision

for (int i = 0; i < circles->total; i++) { // round the floats to an int float* p = (float*)cvGetSeqElem(circles, i); cv::Point center(cvRound(p[0]), cvRound(p[1])); int ...

1 2 3 4 5 6