World: r3wp
[I'm new] Ask any question, and a helpful person will try to answer.
older newer | first last |
Gregg 15-Aug-2010 [3883] | I stand corrected. :-) |
Yuri 15-Aug-2010 [3884] | Good afternoon Oldes and Pekr. My English not good. I use translation on Internet. I apologetic if software not judicious |
Yuri 17-Aug-2010 [3885] | I apologetic if software not judicious -- Hilarious Good luck all, over and out. |
RobertS 20-Aug-2010 [3886] | My Russian is pretty basic ... but sometimes OK for chat as I read more than speak .. gets me by listening to Serb and Czech films (no ethno -lingual flames, SVP :-) Polish should come next once I settle in here ( also relatively easy for IT chat ) |
BrianH 20-Aug-2010 [3887] | Don't worry, it was a fake account. |
florin 28-Aug-2010 [3888x2] | What is the issue! datatype? A release? A specification? A problem? |
I found this #do reading some code. What is it mean, the Word Browser does not anything in it. | |
BrianH 29-Aug-2010 [3890x2] | The issue! type is a string type that is used for special purposes. One of those pruposes is a preprocessor script called prebol, which is used by the SDK. If you saw #do in a script it is likely a prebol directive. |
The docs for prebol are here: http://www.rebol.com/docs/sdk/prebol.html | |
florin 29-Aug-2010 [3892] | Thanks. That was helpful. |
srwill 1-Nov-2010 [3893] | Hi. So is this the correct group to ask a codingn question? |
Pekr 1-Nov-2010 [3894] | sure :-) |
srwill 1-Nov-2010 [3895x2] | I''m trying to understand this language, sometimes getting it, sometimes not. Anyway here's my question. In VID, I have a layout. I want to put random images in 3 columns with 5 rows. The images are stored together in a single binary file. (this is a mod of the card game on Nick's tutorial site). So I read in the images into a series, after I set the layout. But how do add those to the layout? Here's my current code: do %cards.r the-tableau: layout [ size 320x480 backdrop 0.170.0 across at 30x20 tc1: box 80x100 teal tc2: box 80x100 teal tc3: box 80x100 teal return at 30x130 tc4: box 80x100 teal tc100: box 80x100 coal tc5: box 80x100 teal return at 30x240 tc6: box 80x100 teal tc200: box 80x100 coal tc7: box 80x100 teal return at 30x350 tc8: box 80x100 teal tc9: box 80x100 teal tc10: box 80x100 teal ] foreach [card label num color pos] cards [ dimg: load to-binary decompress (card) append deck-cards dimg ;feel movestyle throw-away-label: label append deck-cards-num num append deck-cards-color color throw-away-pos: pos ] view/new the-tableau do-events |
i want to replace each of the boxes in the layout with a random image from deck-cards. | |
Carl 1-Nov-2010 [3897x4] | at top of layout block, add: style card image 80x100 teal Then each card can be: tc1: card tc2: card etc. |
then: foreach c [tc1 tc2 tc3 ...] [set-face get c random-card] | |
random-card: does [pick card-images random length? card-images] Of course, this assumes it is ok to have 2 of the same cards. ;) | |
I hope that helps. There are many experts around who can give you other tips! | |
srwill 1-Nov-2010 [3901] | That does help, thanks! But still having some trouble seeing what's going on. I see what random-card does, I think. length? card-images returns how many are in the series of card-images. Then random returns a number based on length?. And pick chooses one of the card-images based on the random number. But what is happening in the foreach? It iterates over the images in the layout, correct? The c is just an arbitrary variable, it could be anything, right? |
Maxim 1-Nov-2010 [3902x3] | hehe carl pulled an advanced trick on you :-) |
C is being assigned the word, not its value. (like if you where iterating variable names, not variable's values) get then extracts that word's value | |
in REBOL all functions return a value, even if you do not use the return word (its actually better not to use return explicitely, since its faster) so the random-card function returns an image! from the card-images block. the set-face function applies the image to its default meaning for that style. | |
srwill 1-Nov-2010 [3905x2] | ok. I think I understand that. So here's my new code, which doesn't work. random/seed now ;--include the binary card data do %cards.r the-tableau: layout [ size 320x480 backdrop 0.170.0 style tabstyle image 80x100 teal style holdplace box 80x100 coal across at 30x20 tc1: tabstyle tc2: tabstyle tc3: tabstyle return at 30x130 tc4: tabstyle tc100: holdplace tc5: tabstyle return at 30x240 tc6: tabstyle tc200: holdplace tc7: tabstyle return at 30x350 tc8: tabstyle tc9: tabstyle tc10: tabstyle ] lc: copy [] lc: [tc1 tc2 tc3 tc4 tc5 tc6 tc7 tc8 tc9 tc10] deck-cards: copy [] ; The deck holds all of the cards from the binary file deck-cards-num: copy [] deck-cards-color: copy [] foreach [card label num color pos] cards [ dimg: load to-binary decompress (card) append deck-cards dimg ;feel movestyle throw-away-label: label append deck-cards-num num append deck-cards-color color throw-away-pos: pos ] random-card: does [pick deck-cards random length? deck-cards] foreach c lc [set-face get c deck-cards] view/new the-tableau do-events |
The plan was to read card at random into a block called the-deck, then remove them one at a time, and add them to another block called the-tableau. | |
Maxim 1-Nov-2010 [3907x2] | I've got important work to do right now, but if you can wait, I can give you a working solution later. |
if you're on stack overflow, I'd even prefer you repost your question there, since Its going to be on the open web and I can post pictures. | |
Steeve 1-Nov-2010 [3909] | And you will increase your rank for free Maxim ? ;-) |
Maxim 1-Nov-2010 [3910x2] | hahahhaa. |
I still need to put the time to answer him ;-) | |
Steeve 1-Nov-2010 [3912x2] | srwill, Try to postpone the foreach statement in your code. lay: layout the-tableau foreach c lc [set-face get c deck-cards] view lay |
btw, using "the-tableau" , Are you from the French connection somehow ? | |
srwill 1-Nov-2010 [3914] | No, tableau is a term I seem to recall from an old According to Hoyle card rules book, meaning the layout of the cards to be played. |
Steeve 1-Nov-2010 [3915] | Yeah but still, it's French. It's like doing your coming out :-) |
Ladislav 1-Nov-2010 [3916] | Rien ne va plus! |
srwill 1-Nov-2010 [3917] | I had French in HS... couple semesters in college... Can't read that. I do have great admiration for the French, though. |
Steeve 1-Nov-2010 [3918] | That's enough, you're officially adopted by the French community. |
srwill 1-Nov-2010 [3919x2] | Tres bien! |
Posted the question at Stackoverflow also: http://stackoverflow.com/questions/4073722/rebol-view-how-to-assign-images-to-layout-already-created | |
Maxim 1-Nov-2010 [3921] | I'm working on it. |
Maxim 2-Nov-2010 [3922] | Note I added a bit of meat to the do-events topic raised by Graham, as an extra answer. and yes... it would be swell if you rate the answer as the final one (shameless I know, but worth the time and effort Me thinks ;-) |
rjshanley 23-Nov-2010 [3923] | Is there a way to make objects a and b such that operations like a + b make sense? Like a complex number object. |
Sunanda 23-Nov-2010 [3924] | Geomol has done a complex number library.....Discussion is here: http://www.rebol.org/aga-display-posts.r?offset=0&post=r3wp381x1804 |
rjshanley 23-Nov-2010 [3925] | Thanks, Sunanda. |
rjshanley 24-Nov-2010 [3926] | Geomol's complex number library represents a workable approach to implementing a large integer math library. But has anyone already implemented one? That is, bc's ability to do +, -, *, and / on very large numbers? I've been trying to call bc from REBOL using the CALL stmt, but success has so far eluded me. |
Gregg 24-Nov-2010 [3927] | I have an old string-math lib. I don't remember how complete it is, but the basic ops should work. May no be applicable to what you want to do. |
Sunanda 24-Nov-2010 [3928] | There is this: http://www.rebol.org/view-script.r?script=bignumbers.r But (from a quick squint) it handles numbers as strings. That may be less effective than the usual bignum approach [which, in REBOL terms, might be a block of 32-bit binaries] |
BrianH 24-Nov-2010 [3929] | Isn't there a libbc? |
rjshanley 24-Nov-2010 [3930x2] | The block of binaries would give better performance, but the string approach might be fast enough. I'll take a look at it. Thx. |
The application involves arithmetic associated with disk addresses which can be beyond 2 terrabytes. | |
Sunanda 24-Nov-2010 [3932] | Strings are probably fine for 12 or 13 digit numbers. REBOL3 has 64-bit integers, so that is well within range of a native REBOL 3 INT. Is R3 a possibility for your project? |
older newer | first last |