World: r3wp
[AGG] to discus new Rebol/View with AGG
older newer | first last |
Oldes 23-Nov-2005 [649] | for example line |
Pekr 23-Nov-2005 [650] | you mean non rectangular windows directly in rebol view kernel? |
Oldes 23-Nov-2005 [651] | some place where is drawn something |
Pekr 23-Nov-2005 [652] | but that would not be sufficient for drawing app as well ... dunno what such routines are based upon, but it cant be magic, no? :-) |
Oldes 23-Nov-2005 [653x2] | just have to know what is shape and what is (event) transparent:) |
but it should be done in Rebol internally. not that I will make images from all drawings and check if it's transparent or not under my cursor | |
Pekr 23-Nov-2005 [655] | IIRC Tao Intent has such capabilities, you can decide upon alpha channel even, so your events could be transparent etc ... well, that could be coded too, no? you just press mouse, you detect position of your press, and decide what is under the mouse - that is the most difficult part imo ... |
Oldes 23-Nov-2005 [656] | I think cyphre have some simple examples how to do this but... it should be in Rebol internally:) |
Pekr 23-Nov-2005 [657x2] | Paul Nolan once told me, that the most capable compositing engine he saw was Shake: http://www.apple.com/shake/- look at features. But Carl once told me, that View uses kind of "nodes" too or something like that, simply that View has some advanced compositing too ... |
(well, except the blitting :-) | |
Graham 28-Nov-2005 [659] | Rebolek's AGG demo called "Cyphre" reminds me a bit of Tempest 2000 - anyone planning on a Tempest 2000 clone ?? :) |
shadwolf 5-Dec-2005 [660x5] | Hello folks ^^ |
Here is a little somthing i was working on some month ago when the Ritchtext edit topic pops out -> RTE ... | |
the code is ugly but tiny there is some bugs but i think the idea is good ^^ | |
REBOL [ Author: "Shadwolf" Starting_Date: 21-05-2005 Purpose: {Research work on rebol draw capability to be used to write a Ritch text editor} ] | |
stylize/master [ rte: box with [ color: gray tampon: "" buffer: [] line-index: 0 char-sz: none current-text-offset: 0x0 cursor-text-offset: 0x0 max-text-offset: 0x0 text-color: black pane: [] set-font-style: func [ font-s [word!]] [ switch font-s [ bold [insert tail buffer compose/deep [[ [size: 11 style: [(font-s)]] (either cursor-text-offset/x <> 0 [cursor-text-offset] [as-pair 0 (line-index * 20)]) "" ]]] normal [insert tail buffer compose/deep [[ [size: 11 style: []] ( either cursor-text-offset/x <> 0 [cursor-text-offset][as-pair 0 (line-index * 20)]) "" ]]] underline[insert tail buffer compose/deep [[ [size: 11 style: [(font-s)]] (either cursor-text-offset/x <> 0 [cursor-text-offset][as-pair 0 (line-index * 20)]) "" ]]] italic [insert tail buffer compose/deep [[ [size: 11 style: [(font-s)]] (either cursor-text-offset/x <> 0 [cursor-text-offset][as-pair 0 (line-index * 20)]) "" ]]] ] ] feel: make feel [ engage: func [f a e] [ switch a [ key [ probe e/key switch/default e/key [ #"^M" [ line-index: line-index + 1 f/current-text-offset: as-pair 0 f/current-text-offset/y + 20] insert tail f/buffer compose/deep [[ [size: 11 style: [(font-s)]](as-pair 0 (line-index * 20)) "" ]] ][ f/tampon: rejoin [f/tampon to-string e/key] draw-text: [] print "f/buffer:" probe f/buffer foreach line-to-draw f/buffer [ print "line-to-draw" ;line-to-draw: f/buffer/1 ;probe line-to-draw ;set [font-style start-offset text-to-show ] line-to-draw font-style: line-to-draw/1 start-offset: line-to-draw/2 line-to-draw/3: rejoin [line-to-draw/3 to-string e/key] ;probe font-style ;probe start-offset font-obj: make face/font font-style ;probe font-obj text-to-show: line-to-draw/3 ;probe text-to-show insert tail draw-text compose [ font (font-obj) pen (f/text-color) text (start-offset) (text-to-show)] ] ;print "draw-text:" ;probe draw-text ;draw-text: compose [ pen (f/text-color) text (f/current-text-offset) (f/tampon)] f/effect: make effect reduce [ 'draw draw-text ] draw-text: none ;probe f/current-text-offset f/cursor-text-offset: as-pair (f/cursor-text-offset/x + 9) f/current-text-offset/y ;show f ] f/pane/1/offset: f/cursor-text-offset show f ] down [ ;insert f/buffer compose [(as-pair 0 (line-index * 20)) ""] focus f show f ] ] ] ] append init [ insert buffer compose/deep [[[size: 11 style: []] (as-pair 0 (line-index * 20)) ""]] probe buffer insert pane make face [ color: red size: 2x20 offset: cursor-text-offset ] show self ] ] ] view layout [ across btn "bold" [test-rte/set-font-style 'bold] btn "underline" [test-rte/set-font-style 'underline] btn "italic" [test-rte/set-font-style 'italic] btn "normal" [test-rte/set-font-style 'normal] return test-rte: rte 300x300 ] | |
Henrik 5-Dec-2005 [665] | shadwolf, well, it's a start :-) |
shadwolf 5-Dec-2005 [666x4] | i will be really glad if some AGG guru could have a look on this script and modify enhace it and maybe make a tiny lib ^^ |
what we need for text to begin is bold/italic/underline/normal/color If you have 10 more minutes to pend on it images would be a plus ^^ | |
Henrik yes ... hum i guess you didn't see this script runing lol it looks like I was drunk when i wrote that lol | |
my main idea was to use draw and use a cursor /input output similator but i'm not really a specialist in that kind of motion | |
ICarii 5-Dec-2005 [670] | hiya shadwolf.. also working on something similar in the past. Never finished it though an alpha for flounder is still on the website. |
shadwolf 5-Dec-2005 [671x2] | As all of us i use premade stuff included in over priced C libraries for "prfessionnel" |
icarii can you past url of this project here this will allow ppl to compare / merge technics ... | |
ICarii 5-Dec-2005 [673x2] | http://rebol.mustard.co.nz/projects.htm |
I'm intending to move flounder to AGG when i get a spare moment | |
shadwolf 5-Dec-2005 [675] | by extension i was planing this to be once a short and full working solution will be found to insert it to RebGUI as a basic widget of this set ^^ |
ICarii 5-Dec-2005 [676x2] | uses draw at present but not many differences |
nice idea for widget | |
shadwolf 5-Dec-2005 [678] | but u know ... hen u are drunk you have full ideas then the next morning on wake up you read back the code and "Hoooooooo damn ... was is this ?? i made it ?? no serrious that can be ... What does all those lines are supposed to do ???" |
ICarii 5-Dec-2005 [679] | hehe |
shadwolf 5-Dec-2005 [680] | Shadwolf -> Drunk Coder ..... hum not all the time but this time yes .. |
Graham 5-Dec-2005 [681] | Hey Shadwolf ... don't miss Ashley's message to you in RebGUI channel! |
shadwolf 5-Dec-2005 [682x6] | done ^^ |
but then i have a abnormal bug witch means nothing ... | |
how can a widget in external context mode works better than a widget internal context mode | |
having the same strict code lol | |
Founder-a4 with rebol/view 1.3 ** Script Error: Invalid argument: + ** Where: view ** Near: show scr-face if new [do-events] >> | |
i have looked long time ago at rebconsole code ... but without understanding it mutch ... | |
ICarii 6-Dec-2005 [688] | that's probably because the script was written for view 1.2.48 i think |
Rebolek 6-Dec-2005 [689] | Are the AGG bugfixes part of View 1.3.2 ? |
Pekr 6-Dec-2005 [690] | what was particularly fixed in agg? can svg work continue? |
shadwolf 7-Dec-2005 [691x2] | Svg works need a dubeged matrix -> scaling problem and gradients that feet ratio information and not fixed area ^^ those things can be script coded but this will complicate the SCV rendering engine and makes it slower for nothing ... |
SVC = SVG | |
Pekr 7-Dec-2005 [693x3] | Those are exactly the questions/request, which I would expect to be answered by RT |
iirc Cyphre said some fixes will be mady ... such features are not fixes though, so we can only hope ... | |
shadwolf - have you put your request into rambo? | |
Cyphre 9-Dec-2005 [696x2] | Shadwolf: the matrix problem you had should be fixed in DRAW 1.3.2. The gradient ratio parameters will be added probably in the next release. |
I'll post resume of AGG fixes/improvement very soon in this group so you are informed. | |
Josh 15-Dec-2005 [698] | I'm trying to isolate a possible bug having to do with 'line-pattern . I don't think using a negative number should cause rebol to lock up the CPU |
older newer | first last |