Tagged Questions

22
votes
14answers
1k views

Procedural music generation techniques…

I've been putting a lot of thought into procedural generation of content for a while and I've never seen much experimentation with procedural music. We have fantastic techniques for generating …
5
votes
8answers
531 views

How to write main() in an OOP way?

When I first started programming, I wrote everything in main. But as I learned, I tried to do as little as possible in my main() methods. But where do you decide to give the other Class/Method the …
3
votes
10answers
366 views

Best way to explain declarative fallacy in C++?

Is anyone willing to help me craft a good explanation of why the following code is not correct, in that the author is attempting to write C++ code declaratively rather than procedurally? const double …
3
votes
8answers
217 views

OO or procedural

I have an Access db I use for my checkbook (with a good amount of fairly simple VBA behind it) and I'd like to rewrite it as a stand-alone program with a SQL backend. I'm thinking of using either …
3
votes
3answers
162 views

Teaching an old dog new tricks

I have a great manager who was a procedural coding wizard in his day. He is now faced with managing a team which uses object oriented programming in both .Net and Java. He struggles to understand a …
2
votes
3answers
159 views

simple explanation PHP OOP vs Procedural?

Hi, I would like to learn PHP and want to get an Idea about OOP and Procedural. I read some other blogs and tutorials about OOP vs Procedural but I still can't understand the approach. OOP vs …
2
votes
7answers
130 views

Can Procedural Programming use Objects?

I have seen a number of different topics on StackOverFlow discussing the differences between Procedural and Object-Oriented Programming. The question is: If the program uses an object can it still …
2
votes
7answers
444 views

When do you give up set operations in SQL and go procedural?

I was once given this task to do in an RDBMS: Given tables customer, order, orderlines and product. Everything done with the usual fields and relationships, with a comment memo field on the orderline …
2
votes
4answers
147 views

Refactoring for non OO languages

Can anyone recommend a website, book, or simply a list of refactoring strategies for procedural languages as opposed to object oriented languages? Everything I was able to find contained some …
1
vote
1answer
159 views

Tiling Simplex Noise?

I've been interested (as a hobbyist) in pseudo-random noise generation, specifically the Perlin and Simplex algorithms. The advantage to Simplex is speed (especially at higher dimensions), but Perlin …
1
vote
1answer
53 views

Procedural Hash Function

I am wondering what is the best hash function for procedural textures, especially perlin noise. I know about the PRNG posted on this page, but this claims that it is not a good PRNG Thanks
1
vote
2answers
500 views

AS3 3D terrain texture generation: Looking for intermediate/advanced ideas

Hello, all! I have been bashing away at Away3D for AS3, and have made a little terrain generator, using Perlin Noise to create a heightmap, and then for texturing, to splice together 5 images (very …
1
vote
2answers
110 views

Is it possible to design and build a procedural (imperative) based application successfully?

Can you provide examples of applications today that are procedural and maintain a high level of integrity and efficiency? Are there any books, tutorials or links that provide examples of how to …
0
votes
0answers
17 views

Procedural Avatar Generation

I'd like to implement a system that generates unique NxN blocks when given a MD5 hash as an input, currently I'm splitting the MD5 into sub-strings and just using them as Hex colour-codes, does anyone …
0
votes
0answers
17 views

writing memcached connection using pecl based memcached extension

I am actually thinking to start using memcached in my php code, http://us3.php.net/manual/en/book.memcached.php while I searched in google, I find memcache based examples, but not much about …

1 2 next
15 30 50 per page