Tagged Questions
The engine tag has no wiki summary.
29
votes
8answers
1k views
How to implement a rule engine?
I have a db table that stores the following:
RuleID objectProperty ComparisonOperator TargetValue
1 age 'greater_than' 15
2 username 'equal' ...
16
votes
3answers
3k views
iOS Game Engine
Im basically new and starting iPhone game development and I want to create 3D games for the platform, I had a look around and it doesn't seems to have much choice if you want a pure 3D oriented game ...
15
votes
1answer
2k views
Engine's assets with Rails 3.1
How should one provide assets in an engine in Rails 3.1?
Where should they be located and can they be included automatically?
Originally asked by Tomas Celizna posted here.
14
votes
11answers
14k views
Android game engine for 2d and 3d games?
There is a library called cocos-2d for iphone. There are number of games developed with that nowadays. Also, there is cocos-2d library available for Android too. I just wanted to know if that is also ...
14
votes
4answers
5k views
What CodeIgniter template library is best?
As I see, there's a few Codeigniter template engines scattered all over the web, but unfortunately I can't recognize which is better in regard to: performance, features, maintenance ..etc
Some of ...
14
votes
5answers
13k views
Are there any decent physics engines for Android?
I've looked around for a physics engine that will play nicely with Android, but I've only been disappointed.
In terms of performance, I had heard that jbox2d was the best bet, but (from my ...
11
votes
4answers
3k views
Javascript Engines Advantages
I am confused about javascript engines right now. I know that V8 was a big deal because it compiled javascript to native code. Then I started reading about Mozilla SpiderMonkey, which from what I ...
11
votes
2answers
1k views
Is Lucene.Net suitable as the search engine for frequently changing content?
Is Lucene.Net suitable as the search engine for frequently changing content?
Or more specificically, can anybody give a subjective opinion on how quickly lucene.net indexes can be updated. Any other ...
10
votes
2answers
1k views
symfony 1.4 propel:build-all not working on Mysql 5.5
i am using Symfony 1.4.8 and Mysql 5.5
i got this error when i run
symfony propel:build-all
You have an error in your SQL syntax;
check the manual that corresponds to
your MySQL server ...
9
votes
16answers
8k views
System.ExecutionEngineException Failure
I've been trying to find out more about this problem and I'm not having much luck. I keep reading that applications should not have this error come up and although that's all fine and dandy, it ...
9
votes
2answers
2k views
Ruby & Rules Engines
I'm looking for a simple way to let users define a set of rules to filter objects.
Eg. let them define something like "notify me about a booking if booking date < 2009/04/30 AND value > 100.00"
...
9
votes
5answers
3k views
asp.net mvc blogging engine
I am looking for some open source blogging engine build on ASP.NET MVC. Is there any production ready projects available?
Note from svinto: I want this as well, but rather something that plugs in to ...
8
votes
1answer
853 views
rails 3 blog engine/gem that works on heroku, what to use?
I have spent some time looking for a rail3 blog engine for use on an existing site. I want the blog on the same domain as the application for SEO points eg www.site.com/blog not blog.site.com
Having ...
8
votes
2answers
8k views
set default storage engine of MySQL database
I've been working on writing SQL to create a MySQL database with several default options, including character set and collation. Is it possible to set the default storage engine for tables in this ...
8
votes
8answers
9k views
Is there any open source AI engine?
I am searching for an open source AI engine implemented in C/C++, ActionScript or Java with no success. Do you know any open source implementation?
Update: Thanks for answers! I had no idea how vast ...
7
votes
2answers
1k views
Webgl 2D engine?
Anyone know any good Webgl 2D engines? I've been thinking about using a Webgl 3D engine like Copperlicht but this feels like using a bazooka to swat a fly. I'm mostly interested in using it to develop ...
7
votes
3answers
778 views
Recommended 2D Sprite engine for a Delphi board game?
Which are the choices I should look into for a Delphi sprite engine.
I am aware of
GLScene
Andorra 2D
anything else I am missing?
It is best if it relies on OpenGL. DirectX only solutions are ...
7
votes
1answer
826 views
Java Game Engine
Does anybody know any good 2D game engines for Java? I'd like one that at least tries to keep up-to-date. I tried using JGame, but it didn't have the flexibility I required. I tried using Slick2D, but ...
7
votes
8answers
1k views
PHP - Best way to detect bot from user agent?
Time goes by, but still no perfect solution...
See if someone has a bright idea to differentiate bot from human-loaded web page?
State of the art is still loading a long list of well-known SE bots and ...
7
votes
3answers
364 views
Game Engine: Write in C++ and expose to C# or write directly in C#?
I am doing a bit of research before I am going to write my own 2D (and maybe some 3D) game engine. I have made an engine before using C# and XNA but I want to go cross platform this time by making my ...
7
votes
9answers
387 views
Is there a graphics/game engine that supports PC & Mac?
Is there a graphics and/or game engine that runs on both Mac & PC? I've seen Unity and that's a possibility, I'm wondering if there are any other choices.
Ideally I want to port the same C++ game ...
6
votes
2answers
287 views
GTK theme engine: where to start?
I would like to start coding a gtk theme engine, but i'm wondering where i can find some documentation, if any exists.
I know how to have look at someone else engine's code, examples, or torture tests ...
6
votes
1answer
2k views
How does the “Unlimited Detail” graphics technology work?
So I stumbled upon this "new" graphics engine/technology called Unlimited Detail.
This seems to be pretty interesting granted it's real and not a fake.
They have some videos explaining the ...
6
votes
1answer
260 views
General purpose physics engine
Is there any general purpose physics engine that allows huge simulations of rigid bodies? I'm using PhysX from Nvidia, but the focus of this engine is game development, soft bodies. I want to know if ...
6
votes
6answers
2k views
What is the best way to have realtime 3D rendering in an engineering application?
We are developing a GIS based application which simulates the real word objects (i.e. Pipes, Roads, etc) in a virtual reality environment. Currently we use ArcScene from ESRI ArcGIS package for 3D ...
5
votes
1answer
162 views
Rails 3.1 - Developing with Mountable Engines
I am developing 2 apps for 2 separate clients, and a 3rd for myself. All 3 apps will have an address book, emailing, and user authentication. Finally, I want the apps to be created "modular" so that I ...
5
votes
4answers
189 views
Is InnoDB (MySQL 5.5.8) the right choice for multi-billion rows?
So, one of my tables in MySQL which uses the InnoDB storage engine will contain multi-billion rows(with potentially no limit to how many will be inserted).
Can you tell me what sort of optimizations ...
5
votes
1answer
768 views
How to test a Rails3 Engine with Devise and rspec
Hi
I am developing a Rails engine that depends on the Devise Gem. My Engine itself is a gem too and i need to write tests for that thing. For this i did lots of readings of how to test an engine from ...
5
votes
3answers
359 views
Entity Programming tutorials?
I recently learned the basic (in the roughest of definitions) idea of Entity programming and would like to learn more. The concept I got was pretty much just a massive abstraction. Is this right? ...
5
votes
2answers
353 views
How to implement simple tick-based engine in c++?
I'm writing a text game and I need a simple combat system, like in MUDs, you issue commands, and once in a while "tick" happens, when all those commands execute, player and monsters deal damage, all ...
5
votes
2answers
153 views
Modern e-books/books about building a game engine
Any recommendations? I've been looking for something that talks me through how a game engine is built. I've tried fiddling around with Java's, C#.NET's 3D game engines (and made a few 2D sidescrollers ...
5
votes
5answers
459 views
Search engine with 'did you mean' [closed]
Possible Duplicate:
How does the Google “Did you mean?” Algorithm work?
Hi,
I have a database table with about 2 million records. I'm using mysql fulltext to searching but ...
5
votes
3answers
284 views
Polymorphic engines, in managed languages?
Hey, I have developed my programming skills to a point where i can do most everyday stuff quite well and easily, and I thought one day, that making a polymorphic engine would really test my skills, ...
5
votes
1answer
710 views
XNA - Creating a lot of particles at the same time
time for another XNA question. This time it is purely from a technical design standpoint though.
My situation is this: I've created a particle-engine based on GPU-calculations, far from complete but ...
5
votes
3answers
1k views
Perspective correct texture mapping; z distance calculation might be wrong
I'm making a software rasterizer, and I've run into a bit of a snag: I can't seem to get perspective-correct texture mapping to work.
My algorithm is to first sort the coordinates to plot by y. This ...
5
votes
2answers
2k views
Which 3D engine for ruby
i am looking for a 3D engine for developing a ruby game. i found some like G3Druby or ogrerb.
which one is better to use and has better functionality? is there any other engine better than these?
4
votes
5answers
84 views
Good Game Engine for Teaching Purposes
I am teaching 3D Computer Graphics.
I have to give some lesson on a game engine, but I do not know any game engine.After searching on google, I found a lot of free and open source Game Engine, ...
4
votes
0answers
78 views
Advanced search engine or server for relational database [closed]
In my current project we are storing big volume of data in relational database. One of the recent key requirements is to enrich application by adding some advanced search capabilities.
In the ...
4
votes
8answers
306 views
Search Engine in Java?
I am trying to create a search engine just to learn and get more experience in Java.
My intention is to store about 100 files on a server, a mixture of html, xml, doc, txt, and for each file to have ...
4
votes
3answers
310 views
SQL Injection after removing all single-quotes and dash-characters
Can anyone show an EXAMPLE of a sql statement when SQL Injection occurred even after all "single-quote" and "dash characters" have been stripped out of the user's input?
SELECT MyRecord FROM ...
4
votes
2answers
320 views
Rails 3 Engines: how to change the priority of your routes
I am working on extracting some of the functionality of one of my apps into an Engine.
It seems that the routes in your app are generated and then the routes for the engine. The end result is that my ...
4
votes
5answers
645 views
Handling entities in a game - C++
As a small excersize I am trying to write a very small, simple game engine that just handles entities (moving, basic AI etc.)
As such, I am trying to think about how a game handles the updates for ...
4
votes
1answer
213 views
ASP.NET MVC3 version release [closed]
Currently I am using ASP.NET MVC 3 version with Razor View Engine. Sometimes it is difficult to work with the ".cshtml" files without having intellisense.
Do you have any information as to the ...
4
votes
8answers
663 views
C++ in-memory Key-Value stores
I'm looking for suggestions regarding in-memory key-value store engines or libraries, that have C++ interfaces or that are written in C++.
I'm looking for solutions that can scale without any ...
4
votes
2answers
196 views
Where can I find a finite element analysis library for the .NET platform?
I could use a library that implements the Finite Element Method in my winforms application. Is there available any such library for the .NET platform?
4
votes
1answer
2k views
How-to create a REST service with Google App Engine and Python?
I want to create a RESTFUL web service that gets a request via the URL that is accessed and then returns the appropriate document for that client. For example, if it was a weather app and I wanted to ...
4
votes
6answers
2k views
C++ Graphic Drawing Library
Does anyone know what's the best graphic drawing library for C++, I want a lib that can draw basic shapes and can make image editing, gradients and vector or 3D would be great to.
The windows drawing ...
4
votes
5answers
1k views
The good 3D GUI engine
I know WPF is one of good 3D GUI engine, but I want to know other good 3D GUI engines?
4
votes
6answers
2k views
2D Game Engines?
Some friends and I are just starting a small 2D game project (sort of a Shoot 'em up type game) and, not wanting to reinvent the wheel, we are looking for a (free/open source) game engine. So far, the ...
4
votes
9answers
4k views
ASP.NET based Workflow Engine
I am working on a design spec for a new application that will be heavily workflow driven.
Before I re-invent the wheel, is there a decent lightweight workflow engine that plugs into ASP.NET already ...