Oxygen Basic
Programming => Example Code => General => Topic started by: Arnold on June 25, 2019, 06:09:12 AM
-
Hi Charles,
using a print statement without argument gives an error message (Linker found unidentified names). Using print "" or print chr(13,10) will solve the problem. I wonder if it's legitimate to use an overriding function?
'uses console
sub print
'print ""
print chr(13,10)
end sub
'print
print "Hello"
print
print "Goodbye"
'waitkey
I am not sure if side effects are expected if I try to override print in this way?
Roland
-
Roland,
Why would you want to do that with a message box?
With console just use printl
use console
printl "Hello"
printl
printl "Goodbye"
waitkey
James
-
Hi James,
this is true. Therefore in my example I commented out: uses console. Then printl will give an error in any case. But perhaps my question is only academic. Using print "" or print chr(13,10) will always work.
Roland
-
Hi Roland,
You can create any number of override functions providing they do not contain optional or default params.
-
Now there is a way of redefining or extending a function without causing recursion.
By using the term prior, you can access the previous definition:
sub print(string s)
prior print(">>: "+s)
end sub
print "Hello" '>>: Hello
-
Hello Charles, Great feature, i have an inmedite use for it.
Does prior only work in a module of the same name? What happens if you use if outside of a module of the same name? is it safe?
-
Hi Brian,
prior should work anywhere. However there is a glitch specifically relating to prior print which will be fixed in 0.2.8
This is how it should work:
sub print( string s)
prior print(">>: "+s)
end sub
print "Hello" '>>: Hello
prior print "Hello" 'Hello
and this is the workaround:
int a 'dummy return variable
sub print( string s)
a=prior print(">>: "+s)
end sub
print "Hello" '>>: Hello
a=prior print "Hello" 'Hello
-
Hi Charles,
there is a small problem in version 0.2.7 with examples\Dlls\TestHello64.o2bas. When I run the exe file then HelloW is not printed, no matter what I try. I also tried this code:
$filename "TestHello64_w.exe"
uses RTL64
function HelloA(string s) as string
return "HelloA "+s
end function
function HelloW(wstring s) as wstring
return "HelloW "+s
end function
print HelloA "World!"
print HelloW "World!"
and I get the same result.
I would also like to point to Asm32\AddrLabel.o2bas. I must use: print (hex [ecx]) to get the expected result. (But AddrStringLit.o2bas works as expected).
Roland
-
Thanks, Roland.
I've fixed the problem in RTL64.inc.
Unfortunately print can no longer be used to display register content directly, due to additional tweaks which overwrite various registers. However you can use mbox instead. It is lower level, and takes a string expression or string pointer.
addr ecx,xx
mbox hex [ecx]
end
.xx
db 1 2 3 4
latest version 0.2.8 just posted :)