Tagged Questions
The procedural tag has no wiki summary.
41
votes
19answers
4k 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 ...
36
votes
10answers
3k views
Any procedural (non-OO) PHP Framework?
I've stumbled across a couple of PHP Framework questions on SO. But like //so/questions/2648/what-php-framework it's mostly an itching on the surface or popularity contest. Skimming through each ...
14
votes
4answers
3k views
simple explanation PHP OOP vs Procedural?
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 Procedural
...
8
votes
4answers
386 views
Loosen “Local procedure/function assigned to procedure variable” restriction gracefully
Consider the following test-case:
{ CompilerVersion = 21 }
procedure Global();
procedure Local();
begin
end;
type
TProcedure = procedure ();
var
Proc: TProcedure;
begin
Proc := Local; ...
8
votes
4answers
344 views
What content have you made/seen made using procedural techniques
Hey S.O. guys,
I was looking at some study i have to do in the future to do with procedural generation techniques and i was wondering what type of content you have:
Developed
Helped Develop
Seen ...
8
votes
6answers
918 views
Is OOP worth using in PHP?
There are many debates on whether Object Oriented Programming is good or not. But, using OOP in Php is slower. Would it be a good trade to use procedural programming and faster speed and OOP with ...
6
votes
8answers
703 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 ...
5
votes
4answers
213 views
Choosing which classes to use in a php OOP design
I run an arcade site and over the past few years it's had many features added, it's got to the point where procedural programming just looks way too complicated and adding new features or making ...
4
votes
2answers
114 views
Which Scala function to replace this procedural statement?
Mindblock here, but I can't figure out how to make this less ugly:
def getClosestSphere(ray: Ray, spheres: List[Sphere]): Sphere = {
val map = new HashMap[Double, Sphere]
for (sphere <- ...
4
votes
5answers
101 views
Am I writing procedural code with objects or OOP?
So basically I'm making a leap from procedural coding to OOP.
I'm trying to implement the principles of OOP but I have a nagging feeling I'm actually just writing procedural style with Objects.
So ...
4
votes
1answer
342 views
PHP Testing, for Procedural Code
Is there any way of testing procedural code? I have been looking at PHPUnit which seems like a great way of creating automated tests. However, it seems to be geared towards object oriented code, are ...
4
votes
2answers
351 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 ...
4
votes
7answers
384 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 ...
4
votes
3answers
242 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 ...
4
votes
4answers
255 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 ...
3
votes
3answers
99 views
PHP Procedural To OOP
I'm trying to convert my procedural code to oop.
<?php
$dbc = get_dbc();
$info = mysqli_query($dbc, "SELECT info_id, info_title FROM text") or die("Error: ".mysqli_error($dbc));
while ...
3
votes
4answers
177 views
When are TSQL Cursors the best or only option?
I'm having this argument about using Cursors in TSQL recently...
First of all, I'm not a cheerleader in the debate -- the people who like the procedural approach are just as special as the people who ...
3
votes
2answers
121 views
Procedural snare drum
So I've got something like:
void createSinewave( short * array, int duration, int startOffset,
float freq, float amp ) ;
void createSquarewave( short * array, int duration, int startOffset,
...
3
votes
10answers
710 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 ...
2
votes
1answer
162 views
Fastest Perlin-Like 3D noise algorithm?
It's been well over 20 years since Ken Perlin first invented his noise. Has anybody managed to make a faster kind of 3D noise generator with properties close to Perlin's (procedural, natural-looking ...
2
votes
1answer
141 views
On-the-fly Terrain Generation Based on An Existing Terrain
This question is very similar to that posed here.
My problem is that I have a map, something like this:
This map is made using 2D Perlin noise, and then running through the created heightmap ...
2
votes
1answer
63 views
Sound generation or sound file concatenation in PHP
Is it possible to generate sound using PHP - or is there support for sound file concatenation?
2
votes
4answers
1k 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 ...
2
votes
7answers
298 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
655 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 ...
1
vote
1answer
85 views
php procedural with namespace vs oop
The biggest advantage of the OOP vs procedural programming in PHP to my understanding is the sort of separation of the function names (sort of namespace).
So now when we have namespace since version ...
1
vote
1answer
103 views
Parametric Random Function For 2D Noise Generation
I'm attempting to generate infinite random terrain. The terrain should generate the same every time given the same seed.
I've tried using Java's Random function, creating the seed using various ...
1
vote
1answer
66 views
Procedural instantiation of a class - how to?
Let's assume I have a class Object with one method which simply reports the ID number of the instance. Normally, I would hardcode the instantiation of the Object class like "Object obj_1" and the ...
1
vote
2answers
85 views
“Lazyloading” information from a database on a PHP page in procedural
I know proper lazy loading usually requires using objects and a proxy pattern. I'm not there yet as a site needs some redesign. However, is there any way I can still spool out DB data to a page and ...
1
vote
2answers
84 views
Perl design question
What is the difference between writing sub functions and putting it all in one file vs. writing packages? Is object oriented better than procedural when it comes to Perl?
Basically looking for ...
1
vote
1answer
76 views
Assign mirror operation to vertices array
I understand the math in flipping vertex coordinates in a .obj vertices array to get the mirrored coordinate across a plane/axis. But, how do you populate the vertices array for an actual mirror ...
1
vote
2answers
139 views
From procedural Function to OOP Class (one specific situation)
Still learning OOP, and trying to change my perspective from procedural way of life. I've found a lot of advantages when refactoring, but now I am stuck in a paradigm:
I am refactoring a shopping ...
1
vote
2answers
283 views
Designing WCF service interface. Procedural vs Object Oriented Design
we are building product that can be used by other systems. As we have SOA, we develop only a service (WCF). We had several controversial discussions about how to design an interface of that service. ...
1
vote
1answer
152 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
1k views
AS3 3D terrain texture generation: Looking for intermediate/advanced ideas
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 generic noise ...
1
vote
2answers
162 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 ...
1
vote
2answers
456 views
Multi-Paradigm Languages
In a language such as (since I'm working in it now) PHP, which supports procedural and object-oriented paradigms, is there a good rule of thumb for determining which paradigm best suits a new project? ...
0
votes
3answers
49 views
Generating rolling hills of different height and width like Tiny Wings?
How can I generate rolling hills of different height and width like Tiny Wings? Right now I'm using sin() but it obviously generates uniform hills repeating forever and ever.
What's the secret?
...
0
votes
0answers
29 views
As someone new to programming, should I stick with procedural PHP or just jump directly into OOP? [migrated]
I'm just starting out and have successfully completed a small procedural CMS tutorial. It was rewarding, and definitely left me wanting more.
I could continue looking for more procedural tutorials ...
0
votes
1answer
58 views
Gaussian Falloff Format for Mesh Manipulation
This return below is defined as a gaussian falloff. I am not seeing e or powers of 2, so I am not sure how this is related to the Gaussian falloff, or if it is the wrong kind of fallout for me to use ...
0
votes
0answers
73 views
Heightmap based on canvas data
I made this kind of rain-like algorithm for last night. (click the blue area to interact with it, works in late versions of chrome at least)
http://gustavstromberg.se/sandbox/html5/canvas/rain.php
...
0
votes
2answers
125 views
MySQL Procedural Languages?
What procedural languages are available for writing stored procedures or functions in MySQL?
0
votes
0answers
44 views
Ways to procedurally parametrize a 3d mesh
How do you procedurally parametrize a 3d mesh?
For example - take a torus mesh, and you want to assign whether it spirals or cuts by assigning a numeric parameter... How do you apply the ...
0
votes
2answers
254 views
Any procedural (not OO) PHP based lightweight CMS?
I need to create a basic dynamic website for my wife's small law firm (blog entries with comments, some static info, a contact gateway, access to an existing html article archive) and I'd like to use ...
0
votes
1answer
178 views
what is no-oo mvc in php?
what is no-oo mvc in php?
If it is possible, give an example.
If not, why?
0
votes
1answer
127 views
Doxygen for procedural programs
I have some large, mostly procedural codes that need to be well documented. This generally involves repeated use of a number of functions that must be executed in a certain order.
Doxygen is a great ...
0
votes
1answer
503 views
SQLite Flow Constructs in SQL?
With MSSQL, I can mix in case, if...then, and while constructs in my SQL code. Is anything similar available for SQLite? I have not seen anything on "mixing procedurally" with SQLite, anywhere.
...
0
votes
6answers
1k views
Speed Comparisons - Procedural vs. OO in interpreted languages
In interpreted programming languages, such as PHP and JavaScript, what are the repercussions of going with an Object Oriented approach over a Procedural approach?
Specifically what I am looking for ...