summary refs log tree commit diff stats
path: root/tests/js.html
blob: 81baef784ca80a553bb22ce4a390f4bb39a60141 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!--  This has been written by hand. (c) 2010 Andreas Rumpf -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Nimrod JavaScript Generator Test</title>
<style type="text/css">
span.DecNumber {color: blue}
</style>
<script src="nimcache/js.js" type="text/javascript"></script>
</head>
<body onload="OnLoad()">
<form name="form1" action="js.html">
  <input type="text" name="input1" size="10" />
  <input type="button" value="Calculate square" onclick="OnButtonClick()" />
</form>

</body>
</html>
='n308' href='#n308'>308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
# Wrappers around print primitives that take a 'screen' object and are thus
# easier to test.

container screen [
  num-rows:number
  num-columns:number
  cursor-row:number
  cursor-column:number
  data:address:array:screen-cell
]

container screen-cell [
  contents:character
  color:number
]

recipe new-fake-screen [
  local-scope
  result:address:screen <- new screen:type
  width:address:number <- get-address result:address:screen/lookup, num-columns:offset
  width:address:number/lookup <- next-ingredient
  height:address:number <- get-address result:address:screen/lookup, num-rows:offset
  height:address:number/lookup <- next-ingredient
#?   $print height:address:number/lookup, 10/newline
  row:address:number <- get-address result:address:screen/lookup, cursor-row:offset
  row:address:number/lookup <- copy 0
  column:address:number <- get-address result:address:screen/lookup, cursor-column:offset
  column:address:number/lookup <- copy 0
  bufsize:number <- multiply width:address:number/lookup, height:address:number/lookup
  buf:address:address:array:screen-cell <- get-address result:address:screen/lookup, data:offset
  buf:address:address:array:screen-cell/lookup <- new screen-cell:type, bufsize:number
  clear-screen result:address:screen
  reply result:address:screen
]

recipe clear-screen [
  local-scope
  sc:address:screen <- next-ingredient
#?   $print [clearing screen
#? ] #? 1
  # if x exists
  {
    break-unless sc:address:screen
    # clear fake screen
    buf:address:array:screen-cell <- get sc:address:screen/lookup, data:offset
    max:number <- length buf:address:array:screen-cell/lookup
    i:number <- copy 0
    {
      done?:boolean <- greater-or-equal i:number, max:number
      break-if done?:boolean
      curr:address:screen-cell <- index-address buf:address:array:screen-cell/lookup, i:number
      curr-content:address:character <- get-address curr:address:screen-cell/lookup, contents:offset
      curr-content:address:character/lookup <- copy [ ]
      curr-color:address:character <- get-address curr:address:screen-cell/lookup, color:offset
      curr-color:address:character/lookup <- copy 7/white
      i:number <- add i:number, 1
      loop
    }
    # reset cursor
    cur:address:number <- get-address sc:address:screen/lookup, cursor-row:offset
    cur:address:number/lookup <- copy 0
    cur:address:number <- get-address sc:address:screen/lookup, cursor-column:offset
    cur:address:number/lookup <- copy 0
    reply sc:address:screen/same-as-ingredient:0
  }
  # otherwise, real screen
  clear-display
  reply sc:address:screen/same-as-ingredient:0
]

recipe fake-screen-is-clear? [
  local-scope
  sc:address:screen <- next-ingredient
  reply-unless sc:address:screen, 1/true
  buf:address:array:screen-cell <- get sc:address:screen/lookup, data:offset
  i:number <- copy 0
  len:number <- length buf:address:array:screen-cell/lookup
  {
    done?:boolean <- greater-or-equal i:number, len:number
    break-if done?:boolean
    curr:screen-cell <- index buf:address:array:screen-cell/lookup, i:number
    curr-contents:character <- get curr:screen-cell, contents:offset
    i:number <- add i:number, 1
    loop-unless curr-contents:character
    # not 0
    reply 0/false
  }
  reply 1/true
]

recipe print-character [
  local-scope
  sc:address:screen <- next-ingredient
  c:character <- next-ingredient
  color:number, color-found?:boolean <- next-ingredient
  {
    # default color to white
    break-if color-found?:boolean
    color:number <- copy 7/white
  }
  bg-color:number, bg-color-found?:boolean <- next-ingredient
  {
    # default bg-color to black
    break-if bg-color-found?:boolean
    bg-color:number <- copy 0/black
  }
#?   trace [app], [print character] #? 1
  {
    # if x exists
    # (handle special cases exactly like in the real screen)
    break-unless sc:address:screen
    width:number <- get sc:address:screen/lookup, num-columns:offset
    height:number <- get sc:address:screen/lookup, num-rows:offset
    # if cursor is out of bounds, silently exit
    row:address:number <- get-address sc:address:screen/lookup, cursor-row:offset
    legal?:boolean <- greater-or-equal row:address:number/lookup, 0
    reply-unless legal?:boolean, sc:address:screen
    legal?:boolean <- lesser-than row:address:number/lookup, height:number
    reply-unless legal?:boolean, sc:address:screen
    column:address:number <- get-address sc:address:screen/lookup, cursor-column:offset
    legal?:boolean <- greater-or-equal column:address:number/lookup, 0
    reply-unless legal?:boolean, sc:address:screen
    legal?:boolean <- lesser-than column:address:number/lookup, width:number
    reply-unless legal?:boolean, sc:address:screen
    # special-case: newline
    {
      newline?:boolean <- equal c:character, 10/newline
#?       $print c:character, [ ], newline?:boolean, 10/newline
      break-unless newline?:boolean
      {
        # unless cursor is already at bottom
        bottom:number <- subtract height:number, 1
        at-bottom?:boolean <- greater-or-equal row:address:number/lookup, bottom:number
        break-if at-bottom?:boolean
        # move it to the next row
        column:address:number/lookup <- copy 0
        row:address:number/lookup <- add row:address:number/lookup, 1
      }
      reply sc:address:screen/same-as-ingredient:0
    }
    # save character in fake screen
    index:number <- multiply row:address:number/lookup, width:number
    index:number <- add index:number, column:address:number/lookup
    buf:address:array:screen-cell <- get sc:address:screen/lookup, data:offset
    len:number <- length buf:address:array:screen-cell/lookup
    # special-case: backspace
    {
      backspace?:boolean <- equal c:character, 8
      break-unless backspace?:boolean
      {
        # unless cursor is already at left margin
        at-left?:boolean <- lesser-or-equal column:address:number/lookup, 0
        break-if at-left?:boolean
        # clear previous location
        column:address:number/lookup <- subtract column:address:number/lookup, 1
        index:number <- subtract index:number, 1
        cursor:address:screen-cell <- index-address buf:address:array:screen-cell/lookup, index:number
        cursor-contents:address:character <- get-address cursor:address:screen-cell/lookup, contents:offset
        cursor-color:address:number <- get-address cursor:address:screen-cell/lookup, color:offset
        cursor-contents:address:character/lookup <- copy 32/space
        cursor-color:address:number/lookup <- copy 7/white
      }
      reply sc:address:screen/same-as-ingredient:0
    }
#?     $print [saving character ], c:character, [ to fake screen ], cursor:address/screen, 10/newline
    cursor:address:screen-cell <- index-address buf:address:array:screen-cell/lookup, index:number
    cursor-contents:address:character <- get-address cursor:address:screen-cell/lookup, contents:offset
    cursor-color:address:number <- get-address cursor:address:screen-cell/lookup, color:offset
    cursor-contents:address:character/lookup <- copy c:character
    cursor-color:address:number/lookup <- copy color:number
    # increment column unless it's already all the way to the right
    {
      right:number <- subtract width:number, 1
      at-right?:boolean <- greater-or-equal column:address:number/lookup, right:number
      break-if at-right?:boolean
      column:address:number/lookup <- add column:address:number/lookup, 1
    }
    reply sc:address:screen/same-as-ingredient:0
  }
  # otherwise, real screen
  print-character-to-display c:character, color:number, bg-color:number
  reply sc:address:screen/same-as-ingredient:0
]

scenario print-character-at-top-left [
  run [
#?     $start-tracing #? 3
    1:address:screen <- new-fake-screen 3/width, 2/height
    1:address:screen <- print-character 1:address:screen, 97  # 'a'
    2:address:array:screen-cell <- get 1:address:screen/lookup, data:offset
    3:array:screen-cell <- copy 2:address:array:screen-cell/lookup
  ]
  memory-should-contain [
    3 <- 6  # width*height
    4 <- 97  # 'a'
    5 <- 7  # white
    6 <- 0
  ]
]

scenario print-character-color [
  run [
    1:address:screen <- new-fake-screen 3/width, 2/height
    1:address:screen <- print-character 1:address:screen, 97/a, 1/red
    2:address:array:screen-cell <- get 1:address:screen/lookup, data:offset
    3:array:screen-cell <- copy 2:address:array:screen-cell/lookup
  ]
  memory-should-contain [
    3 <- 6  # width*height
    4 <- 97  # 'a'
    5 <- 1  # red
    6 <- 0
  ]
]

scenario print-backspace-character [
  run [
#?     $start-tracing #? 3
    1:address:screen <- new-fake-screen 3/width, 2/height
    1:address:screen <- print-character 1:address:screen, 97  # 'a'
    1:address:screen <- print-character 1:address:screen, 8  # backspace
    2:number <- get 1:address:screen/lookup, cursor-column:offset
    3:address:array:screen-cell <- get 1:address:screen/lookup, data:offset
    4:array:screen-cell <- copy 3:address:array:screen-cell/lookup
  ]
  memory-should-contain [
    2 <- 0  # cursor column
    4 <- 6  # width*height
    5 <- 32  # space, not 'a'
    6 <- 7  # white
    7 <- 0
  ]
]

scenario print-extra-backspace-character [
  run [
    1:address:screen <- new-fake-screen 3/width, 2/height
    1:address:screen <- print-character 1:address:screen, 97  # 'a'
    1:address:screen <- print-character 1:address:screen, 8  # backspace
    1:address:screen <- print-character 1:address:screen, 8  # backspace
    2:number <- get 1:address:screen/lookup, cursor-column:offset
    3:address:array:screen-cell <- get 1:address:screen/lookup, data:offset
    4:array:screen-cell <- copy 3:address:array:screen-cell/lookup
  ]
  memory-should-contain [
    2 <- 0  # cursor column
    4 <- 6  # width*height
    5 <- 32  # space, not 'a'
    6 <- 7  # white
    7 <- 0
  ]
]

scenario print-at-right-margin [
  run [
    1:address:screen <- new-fake-screen 2/width, 2/height
    1:address:screen <- print-character 1:address:screen, 97  # 'a'
    1:address:screen <- print-character 1:address:screen, 98  # 'b'
    1:address:screen <- print-character 1:address:screen, 99  # 'c'
    2:number <- get 1:address:screen/lookup, cursor-column:offset
    3:address:array:screen-cell <- get 1:address:screen/lookup, data:offset
    4:array:screen-cell <- copy 3:address:array:screen-cell/lookup
  ]
  memory-should-contain [
    2 <- 1  # cursor column
    4 <- 4  # width*height
    5 <- 97  # 'a'
    6 <- 7  # white
    7 <- 99  # 'c' over 'b'
    8 <- 7  # white
    9 <- 0
  ]
]

scenario print-newline-character [
  run [
#?     $start-tracing #? 3
    1:address:screen <- new-fake-screen 3/width, 2/height
    1:address:screen <- print-character 1:address:screen, 97  # 'a'
    1:address:screen <- print-character 1:address:screen, 10/newline
    2:number <- get 1:address:screen/lookup, cursor-row:offset
    3:number <- get 1:address:screen/lookup, cursor-column:offset
    4:address:array:screen-cell <- get 1:address:screen/lookup, data:offset
    5:array:screen-cell <- copy 4:address:array:screen-cell/lookup
  ]
  memory-should-contain [
    2 <- 1  # cursor row
    3 <- 0  # cursor column
    5 <- 6  # width*height
    6 <- 97  # 'a'
    7 <- 7  # white
    8 <- 0
  ]
]

scenario print-newline-at-bottom-line [
  run [
    1:address:screen <- new-fake-screen 3/width, 2/height
    1:address:screen <- print-character 1:address:screen, 10/newline
    1:address:screen <- print-character 1:address:screen, 10/newline
    1:address:screen <- print-character 1:address:screen, 10/newline
    2:number <- get 1:address:screen/lookup, cursor-row:offset
    3:number <- get 1:address:screen/lookup, cursor-column:offset
  ]
  memory-should-contain [
    2 <- 1  # cursor row
    3 <- 0  # cursor column
  ]
]

scenario print-at-bottom-right [
  run [
    1:address:screen <- new-fake-screen 2/width, 2/height
    1:address:screen <- print-character 1:address:screen, 10/newline
    1:address:screen <- print-character 1:address:screen, 97  # 'a'
    1:address:screen <- print-character 1:address:screen, 98  # 'b'
    1:address:screen <- print-character 1:address:screen, 99  # 'c'
    1:address:screen <- print-character 1:address:screen, 10/newline
    1:address:screen <- print-character 1:address:screen, 100  # 'd'
    2:number <- get 1:address:screen/lookup, cursor-row:offset
    3:number <- get 1:address:screen/lookup, cursor-column:offset
    4:address:array:screen-cell <- get 1:address:screen/lookup, data:offset
    5:array:screen-cell <- copy 4:address:array:screen-cell/lookup
  ]
  memory-should-contain [
    2 <- 1  # cursor row
    3 <- 1  # cursor column
    5 <- 4  # width*height
    6 <- 0  # unused
    7 <- 7  # white
    8 <- 0  # unused
    9 <- 7  # white
    10 <- 97 # 'a'
    11 <- 7  # white
    12 <- 100  # 'd' over 'b' and 'c' and newline
    13 <- 7  # white
    14 <- 0
  ]
]

recipe clear-line [
  local-scope
  sc:address:screen <- next-ingredient
  # if x exists, clear line in fake screen
  {
    break-unless sc:address:screen
    width:number <- get sc:address:screen/lookup, num-columns:offset
    column:address:number <- get-address sc:address:screen/lookup, cursor-column:offset
    original-column:number <- copy column:address:number/lookup
    # space over the entire line
#?     $start-tracing #? 1
    {
#?       $print column:address:number/lookup, 10/newline
      right:number <- subtract width:number, 1
      done?:boolean <- greater-or-equal column:address:number/lookup, right:number
      break-if done?:boolean
      print-character sc:address:screen, [ ]  # implicitly updates 'column'
      loop
    }
    # now back to where the cursor was
    column:address:number/lookup <- copy original-column:number
    reply sc:address:screen/same-as-ingredient:0
  }
  # otherwise, real screen
  clear-line-on-display
  reply sc:address:screen/same-as-ingredient:0
]

recipe cursor-position [
  local-scope
  sc:address:screen <- next-ingredient
  # if x exists, lookup cursor in fake screen
  {
    break-unless sc:address:screen
    row:number <- get sc:address:screen/lookup, cursor-row:offset
    column:number <- get sc:address:screen/lookup, cursor-column:offset
    reply row:number, column:number, sc:address:screen/same-as-ingredient:0
  }
  row:number, column:number <- cursor-position-on-display
  reply row:number, column:number, sc:address:screen/same-as-ingredient:0
]

recipe move-cursor [
  local-scope
  sc:address:screen <- next-ingredient
  new-row:number <- next-ingredient
  new-column:number <- next-ingredient
  # if x exists, move cursor in fake screen
  {
    break-unless sc:address:screen
    row:address:number <- get-address sc:address:screen/lookup, cursor-row:offset
    row:address:number/lookup <- copy new-row:number
    column:address:number <- get-address sc:address:screen/lookup, cursor-column:offset
    column:address:number/lookup <- copy new-column:number
    reply sc:address:screen/same-as-ingredient:0
  }
  # otherwise, real screen
  move-cursor-on-display new-row:number, new-column:number
  reply sc:address:screen/same-as-ingredient:0
]

scenario clear-line-erases-printed-characters [
  run [
#?     $start-tracing #? 4
    1:address:screen <- new-fake-screen 3/width, 2/height
    # print a character
    1:address:screen <- print-character 1:address:screen, 97  # 'a'
    # move cursor to start of line
    1:address:screen <- move-cursor 1:address:screen, 0/row, 0/column
    # clear line
    1:address:screen <- clear-line 1:address:screen
    2:address:array:screen-cell <- get 1:address:screen/lookup, data:offset
    3:array:screen-cell <- copy 2:address:array:screen-cell/lookup
  ]
  # screen should be blank
  memory-should-contain [
    3 <- 6  # width*height
    4 <- 0
    5 <- 7
    6 <- 0
    7 <- 7
    8 <- 0
    9 <- 7
    10 <- 0
    11 <- 7
    12 <- 0
    13 <- 7
    14 <- 0
    15 <- 7
  ]
]

recipe cursor-down [
  local-scope
  sc:address:screen <- next-ingredient
  # if x exists, move cursor in fake screen
  {
    break-unless sc:address:screen
    {
      # if row < height-1
      height:number <- get sc:address:screen/lookup, num-rows:offset
      row:address:number <- get-address sc:address:screen/lookup, cursor-row:offset
      max:number <- subtract height:number, 1
      at-bottom?:boolean <- greater-or-equal row:address:number/lookup, max:number
      break-if at-bottom?:boolean
      # row = row+1
#?       $print [AAA: ], row:address:number, [ -> ], row:address:number/lookup, 10/newline
      row:address:number/lookup <- add row:address:number/lookup, 1
#?       $print [BBB: ], row:address:number, [ -> ], row:address:number/lookup, 10/newline
#?       $start-tracing #? 1
    }
    reply sc:address:screen/same-as-ingredient:0
  }
  # otherwise, real screen
  move-cursor-down-on-display
  reply sc:address:screen/same-as-ingredient:0
]

recipe cursor-up [
  local-scope
  sc:address:screen <- next-ingredient
  # if x exists, move cursor in fake screen
  {
    break-unless sc:address:screen
    {
      # if row > 0
      row:address:number <- get-address sc:address:screen/lookup, cursor-row:offset
      at-top?:boolean <- lesser-or-equal row:address:number/lookup, 0
      break-if at-top?:boolean
      # row = row-1
      row:address:number/lookup <- subtract row:address:number/lookup, 1
    }
    reply sc:address:screen/same-as-ingredient:0
  }
  # otherwise, real screen
  move-cursor-up-on-display
  reply sc:address:screen/same-as-ingredient:0
]

recipe cursor-right [
  local-scope
  sc:address:screen <- next-ingredient
  # if x exists, move cursor in fake screen
  {
    break-unless sc:address:screen
    {
      # if column < width-1
      width:number <- get sc:address:screen/lookup, num-columns:offset
      column:address:number <- get-address sc:address:screen/lookup, cursor-column:offset
      max:number <- subtract width:number, 1
      at-bottom?:boolean <- greater-or-equal column:address:number/lookup, max:number
      break-if at-bottom?:boolean
      # column = column+1
      column:address:number/lookup <- add column:address:number/lookup, 1
    }
    reply sc:address:screen/same-as-ingredient:0
  }
  # otherwise, real screen
  move-cursor-right-on-display
  reply sc:address:screen/same-as-ingredient:0
]

recipe cursor-left [
  local-scope
  sc:address:screen <- next-ingredient
  # if x exists, move cursor in fake screen
  {
    break-unless sc:address:screen
    {
      # if column > 0
      column:address:number <- get-address sc:address:screen/lookup, cursor-column:offset
      at-top?:boolean <- lesser-or-equal column:address:number/lookup, 0
      break-if at-top?:boolean
      # column = column-1
      column:address:number/lookup <- subtract column:address:number/lookup, 1
    }
    reply sc:address:screen/same-as-ingredient:0
  }
  # otherwise, real screen
  move-cursor-left-on-display
  reply sc:address:screen/same-as-ingredient:0
]

recipe cursor-to-start-of-line [
  local-scope
  sc:address:screen <- next-ingredient
  row:number, _, sc:address:screen <- cursor-position sc:address:screen
  column:number <- copy 0
  sc:address:screen <- move-cursor sc:address:screen, row:number, column:number
  reply sc:address:screen/same-as-ingredient:0
]

recipe cursor-to-next-line [
  local-scope
  screen:address <- next-ingredient
  screen:address <- cursor-down screen:address
  screen:address <- cursor-to-start-of-line screen:address
  reply screen:address/same-as-ingredient:0
]

recipe screen-width [
  local-scope
  sc:address:screen <- next-ingredient
  # if x exists, move cursor in fake screen
  {
    break-unless sc:address:screen
    width:number <- get sc:address:screen/lookup, num-columns:offset
    reply width:number
  }
  # otherwise, real screen
  width:number <- display-width
  reply width:number
]

recipe screen-height [
  local-scope
  sc:address:screen <- next-ingredient
  # if x exists, move cursor in fake screen
  {
    break-unless sc:address:screen
    height:number <- get sc:address:screen/lookup, num-rows:offset
    reply height:number
  }
  # otherwise, real screen
  height:number <- display-height
  reply height:number
]

recipe hide-cursor [
  local-scope
  screen:address <- next-ingredient
  # if x exists (not real display), do nothing
  {
    break-unless screen:address
    reply screen:address
  }
  # otherwise, real screen
  hide-cursor-on-display
  reply screen:address
]

recipe show-cursor [
  local-scope
  screen:address <- next-ingredient
  # if x exists (not real display), do nothing
  {
    break-unless screen:address
    reply screen:address
  }
  # otherwise, real screen
  show-cursor-on-display
  reply screen:address
]

recipe hide-screen [
  local-scope
  screen:address <- next-ingredient
  # if x exists (not real display), do nothing
  {
    break-unless screen:address
    reply screen:address
  }
  # otherwise, real screen
  hide-display
  reply screen:address
]

recipe show-screen [
  local-scope
  screen:address <- next-ingredient
  # if x exists (not real display), do nothing
  {
    break-unless screen:address
    reply screen:address
  }
  # otherwise, real screen
  show-display
  reply screen:address
]

recipe print-string [
  local-scope
  screen:address <- next-ingredient
  s:address:array:character <- next-ingredient
  color:number, color-found?:boolean <- next-ingredient
  {
    # default color to white
    break-if color-found?:boolean
    color:number <- copy 7/white
  }
  bg-color:number, bg-color-found?:boolean <- next-ingredient
  {
    # default bg-color to black
    break-if bg-color-found?:boolean
    bg-color:number <- copy 0/black
  }
  len:number <- length s:address:array:character/lookup
  i:number <- copy 0
  {
    done?:boolean <- greater-or-equal i:number, len:number
    break-if done?:boolean
    c:character <- index s:address:array:character/lookup, i:number
    print-character screen:address, c:character, color:number, bg-color:number
    i:number <- add i:number, 1
    loop
  }
  reply screen:address/same-as-ingredient:0
]

scenario print-string-stops-at-right-margin [
  run [
    1:address:screen <- new-fake-screen 3/width, 2/height
    2:address:array:character <- new [abcd]
    1:address:screen <- print-string 1:address:screen, 2:address:array:character
    3:address:array:screen-cell <- get 1:address:screen/lookup, data:offset
    4:array:screen-cell <- copy 3:address:array:screen-cell/lookup
  ]
  memory-should-contain [
    4 <- 6  # width*height
    5 <- 97  # 'a'
    6 <- 7  # white
    7 <- 98  # 'b'
    8 <- 7  # white
    9 <- 100  # 'd' overwrites 'c'
    10 <- 7  # white
    11 <- 0  # unused
  ]
]

recipe print-integer [
  local-scope
  screen:address <- next-ingredient
  n:number <- next-ingredient
  color:number, color-found?:boolean <- next-ingredient
  {
    # default color to white
    break-if color-found?:boolean
    color:number <- copy 7/white
  }
  bg-color:number, bg-color-found?:boolean <- next-ingredient
  {
    # default bg-color to black
    break-if bg-color-found?:boolean
    bg-color:number <- copy 0/black
  }
  # todo: other bases besides decimal
  s:address:array:character <- integer-to-decimal-string n:number
  print-string screen:address, s:address:array:character, color:number, bg-color:number
  reply screen:address/same-as-ingredient:0
]