https://www.proz.com/kudoz/catalan-to-english/games-video-games-gaming-casino/4089407-%C3%A0rea-l%C3%B2gica.html

Glossary entry

Catalan term or phrase:

àrea lògica

English translation:

logic module

Added to glossary by Donald Hubert Duffy III
Nov 2, 2010 23:53
13 yrs ago
Catalan term

àrea lògica

Catalan to English Tech/Engineering Games / Video Games / Gaming / Casino
I'm told that there are specific terms for this in slot machine terminology and the like.

Any help is greatly appreciated

"àrea lògica

Caixa segellada i precintada amb tancaments electrònics ubicada a l'interior de les màquines que conté tota l'electrònica i els components que tenen el potencial d'afectar significativament el funcionament de la màquina. Pot existir més d'una àrea lògica en cada màquina"
Proposed translations (English)
3 logic module

Proposed translations

10 mins
Selected

logic module

Load the old compact flash card into the external card slot of the logic module. ... the terminal, use the same FUW version as the Machine Edition ...
samplecode.rockwellautomation.com/idc/groups/.../2711p-td002_-en-p.pdf

--------------------------------------------------
Note added at 14 mins (2010-11-03 00:07:46 GMT)
--------------------------------------------------

or: logical spots

You should use 128, 256, or 512 logical spots on your logical reels (yes, you'll need 3 - one for each real reel on your slot machine). ...
www.stellarpc.com/articles/board.aspx?id=5 - Cached - Similar

--------------------------------------------------
Note added at 15 mins (2010-11-03 00:08:31 GMT)
--------------------------------------------------

How to code slot machine logic
Slot machines seem simple at first, but to actually generate a working slot machine that has a higher rater of difficulty of winning large jackpots and lower rate on winning the lower jackpots, you'll need some complex logic.

If you code up a 3 reel slot with 18 possible items on the slot machine, and divide them out among cherries, diamonds, bar, double bar, and 7's, then you only put 1 7 on each reel, your odds of winning 3 7's in a row are actually 1:5832. In reality, if you're going to have a high volume of plays your ultimate jackpot of 3 sevens should be closer to 1 in 100,000 or 1 in 1,000,000 (depending on the type of application you're writing).

Most people tend to try to write logic that just uses random numbers from the Random class or if you're more of a classic ASP person, Randomize with the Rnd function. Now, you will need random numbers at some point to do the full logic, but you won't want to be doing random numbers over and over and over in order to decide whether they hit a 7 or not. Too many time's I've seen programmers say to do the regular random number (to choose 1 of the 18 spots on the reel) and then write an if statement to see if it's a big jackpot spot, send a second random number to lower their odds on whether it stays on that number or not. Well, to me that isn't fair. That's now how real slots work, so why should yours?

The best method would be to generate a logical reel that has more than 18 spots on it. You should use 128, 256, or 512 logical spots on your logical reels (yes, you'll need 3 - one for each real reel on your slot machine). Then, the logic is to match up spots on your logical reel to spots on your physical reel. This is actually how real slot machines work, though in the days of old, the logical reel too was a physical reel inside the machine that you couldn't see. Today, all slot machines run on a computer program even if they're physical reels or video slots.

In order to code it, each logical reel should be an array and when you write your spin function, you're going to be spinning your logical reels, and then showing the user the value that is mapped across to the physical reel. They way to make it challenging is that in the 512 logic spots, your 7's may only be 1 - 5 spots out of 512 while cherries may have closer to 50 - 100 spots on the logical reel. In doing this, you can actually add more than 1 7 spot on your physical reel, and just make sure that they're not tied to as many spots on the logical.

Something went wrong...
4 KudoZ points awarded for this answer. Comment: "Thank you"