Excuse Me (1915 film)

Excuse Me is a 1915 American comedy silent black and white film directed by Henry W. Savage, written by Rupert Hughes and distributed by Gold Rooster Plays.[1][2]

DCP ™ logo
Excuse Me
Directed byHenry W. Savage
Produced byHenry W. Savage
Written byRupert Hughes (play)
Production
companies
Henry W. Savage Inc.
Distributed byGold Rooster Plays
Release date
  • December 31, 1915 (1915-12-31) (USA)
Running time
50 min

Cast

  • George F. Marion as Porter
  • Geraldine O'Brien as Marjorie Newton
  • Vivian Blackburn as Mrs. Jim Wellington
  • Robert Fischer as Jim Wellington
  • Harrison Ford as Lt. Harry Mallory
  • J.B. Hollis
gollark: This is for rendering the area around a player.
gollark: ```javascriptconst renderPlayer = (player) => { let str = "" for (let y = player.y - 5; y <= player.y + 5; y++) { for (let x = player.x - 10; x <= player.x + 10; x++) { let wallCol = getWallColor(x, y) if (x >= WIDTH) { str += wallCol } else if (y >= HEIGHT) { str += wallCol } else if (x < 0) { str += wallCol } else if (y < 0) { str += wallCol } else { let id = getEnemy(x, y) if (id != -1) { str += enemy_icons[enemies[id].id] } else { let id = getPlayer(x, y) if (id != -1) { str += players[id].icon } else { let id = getBonus(x, y) if (id != -1) { str += "?" } else { str += " " } } } } } str += "\n" } return str}```
gollark: YES, SOME OFFENSE.
gollark: As I said, this is not very good code.]
gollark: Every rendered tile.

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.