Search:

Type: Posts; User: MouseTrap; Keyword(s):

Page 1 of 4 1 2 3 4

Search: Search took 0.00 seconds.

  1. Thread: Eros?

    by MouseTrap
    Replies
    4
    Views
    2,471

    Re: Eros?

    Hopefully he making buckets of money too. :lol:
  2. Replies
    32
    Views
    14,085

    Re: Hello Charles

    I believe the google sandbox in chrome actually looks at the opcodes of program, It goes way beyond just protected memory.
    Imo, the best way to have a sandbox environment for oxygen is to disallow...
  3. Replies
    32
    Views
    14,085

    Re: Hello Charles

    Oxygen would make a great embedded scripting language. There would need to be some built in sandboxing features first however.
  4. Replies
    15
    Views
    7,584

    Re: I am in love with.... the IPAD

    "just yesterday I was looking at my iPhone thinking "Hmmm, I wish this thing didn't fit in my pocket and couldn't make phone calls." Then I looked over to my netbook and couldn't help but feel it...
  5. Replies
    5
    Views
    7,995

    Re: 3Impact is now free

    Here is a link to the Bmax mod. I haven't tried it myself.

    http://www.gprogs.com/viewforum.php?id=7
  6. Replies
    5
    Views
    7,995

    Re: 3Impact is now free

    examples never worked for me. Its great that the owner released it for free, but there are much better no-cost game engines out there.
  7. Replies
    6
    Views
    4,146

    Re: Ionicwind info

    There's Blitzmax. http://www.blitzbasic.com/Products/blitzmax.php
  8. Replies
    10
    Views
    6,073

    Re: Computer Programs going amuk

    This reminds me of 'The Singularity' First postulated in 1965.


    The danger in the idea is that a super intelligent computer would be like a double black box, Humans would be powerless to...
  9. Re: Exception handling proposal open for discussion

    I think adding assertions to the core vm might go a long way to handling the type of errors from the document.
    IMO 99% of exceptions are at a level that stops (or should stop) the execution of the...
  10. Thread: Download?

    by MouseTrap
    Replies
    7
    Views
    5,301

    Re: Download?

    Thanks guys!

    Its not that. Its that i've made tweaks over time to my TB installation.
    I wanted to try to resolve the error first with just replacing thinair than risk losing changes in a...
  11. Thread: Download?

    by MouseTrap
    Replies
    7
    Views
    5,301

    Re: Download?

    Thanks Petr.
    I downloaded the link. it looks like i was right about the link being wrong.
    I want to download *ThinAir* only. Thats why i posted in this forum.

    Thanks!
  12. Thread: Download?

    by MouseTrap
    Replies
    7
    Views
    5,301

    Re: Download?

    Thanks. but im not seeing any link for download there.
  13. Thread: Download?

    by MouseTrap
    Replies
    7
    Views
    5,301

    Download?

    My thinair installation seems to have gone haywire. (constant errors)
    I cant seem to find any download link to reinstall it. Can someone point me in the right direction to download?
  14. Replies
    11
    Views
    17,424

    Re: String format of Oxygen dll functions

    It works!
    The problem was making the data portion of the bstr unicode.
    Thanks for the help!
    now i'll see about hacking in function / variable pointers. :eusadance:
  15. Replies
    11
    Views
    17,424

    Re: String format of Oxygen dll functions

    So I believe my mistake is that im converting the string to unicode when making it a Bstr when it doesn't need to.
    I did that based on the microsoft info i found online.

    I'll mod the function...
  16. Replies
    11
    Views
    17,424

    Re: String format of Oxygen dll functions

    Internally. blitzmax strings are unicode. but the user never sees any of it. all strings operations are ascii.
    In the function posted above, you see that im reading the original string one byte at...
  17. Replies
    11
    Views
    17,424

    Re: String format of Oxygen dll functions

    Interesting..
    MS claims the data is unicode and finalized with 2 nulls.
    Do you use a different format or does the picture just omit those?

    http://msdn.microsoft.com/en-us/library/ms221069.aspx
  18. Replies
    11
    Views
    17,424

    Re: String format of Oxygen dll functions

    No, but im trying this:


    Function AllocBStr:Byte Ptr(s$)
    Local buf:Byte Ptr = MemAlloc(s.Length*2+6)
    Int Ptr(buf)[0] = s.Length*2 '// set size in 1st 4 bytes
    buf :+ 4 'inc pointer 4
    For...
  19. Replies
    11
    Views
    17,424

    String format of Oxygen dll functions

    Im trying to get oxygen to work with Blitzmax and im running into some the problems.
    The function "o2_basic' takes a parameter of 'string' but what kind of string?

    If i pass in a 'C' string i...
  20. Replies
    10
    Views
    7,218

    Re: Assembly language question

    This is great. Thanks
  21. Replies
    10
    Views
    7,218

    Re: Assembly language question

    Thanks Charles.
    Thats pretty sharp.
    I'm assuming there is nothing like a callback function that could be set for oxygen that could run with each instruction to inspect the regs at runtime?
  22. Replies
    10
    Views
    7,218

    Re: Assembly language question

    Thats a great lecture, I would definitely take that course!
    Thanks
  23. Replies
    10
    Views
    7,218

    Re: Assembly language question

    Thanks!
    the project is my backwards attempt to learn assembly, By writing all of the error handling and conditions for each instruction i'm learning a lot of valuable info. When the instruction set...
  24. Replies
    10
    Views
    7,218

    Re: Assembly language question

    Thanks Charles!
    I'll definitely check those out, The reason I ask is that I've written an x86 ASM interpreter and VM. I want to keep everything faithful to the way things work internally and flags...
  25. Replies
    10
    Views
    7,218

    Assembly language question

    :roll:
    This is pretty far off topic for Thinbasic, But I thought i would give it a shot as there's lots of smart people here.
    I'm trying to get some info about *how and *why the flags register...
Results 1 to 25 of 91
Page 1 of 4 1 2 3 4