This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {TRON-LASERBIKES by (c) T.Luyben && J.Straaten 1988, revised for TP7.0 VGA, | |
| THIS GAME IS FREEWARE AND MAY BE COPIED... DO NOT ALTER THIS FILE OR THE | |
| ZIP FILE YOU COPY... | |
| IF YOU CHANGE ANYTHING THEN PLEASE LET ME KNOW! NO PROFIT SHALL BE MADE FROM | |
| THIS LITTLE PROJECT | |
| } | |
| uses crt,dos; | |
| const cdlevel=3; {here you can change the difficulty level; there is a} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Import diddy | |
| Import mojo | |
| Class TestScreen Extends Screen | |
| Method Start:Void() | |
| End | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Parses the client API version string and extracts the version number | |
| // | |
| static GLboolean parseGLVersion(int* api, int* major, int* minor, int* rev) | |
| { | |
| int i, _api = GLFW_OPENGL_API, _major, _minor = 0, _rev = 0; | |
| const char* version; | |
| const char* prefixes[] = | |
| { | |
| "OpenGL ES-CM ", | |
| "OpenGL ES-CL ", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl | |
| $x = $ARGV[0]; | |
| $y = $ARGV[1]; | |
| if (not $x or not $y) { | |
| print "./cut50.pl width height\n"; | |
| exit; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Import mojo | |
| Import diddy | |
| Class TestScreen Extends Screen | |
| Method Start:Void() | |
| End | |
| Method Update:Void() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl | |
| $f = $ARGV[0]; | |
| $pagestart = 0; | |
| $charstart = 0; | |
| $kernstart = 0; | |
| $s = "<?xml version=\"1.0\"?>\n<font>\n"; | |
| open(F, $f); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Method DrawWrap(t:String, x:Float, y:Float, width:Float, align:Int = AngelFont.ALIGN_CENTER) | |
| ' do some calculations and splitting | |
| Local splits:StringList = New StringList | |
| Local lw := Floor(width / font.TextWidth("W")) ' about how many letters fit in the width? | |
| Local enters:String[] = t.Split("~n") | |
| ' check if any split string is too long to fit | |
| For Local i:=0 Until enters.Length | |
| Local s := enters[i] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Method Parse() ' csv parser | |
| Local _inc:Bool = False | |
| Local afc:Bool = False | |
| Local quote:=New Quote | |
| Local c:String, c1:String = "" | |
| raw = raw + "~n" ' make sure we catch the last one | |
| For Local i := 0 To raw.Length | |
| c = raw[i..i+1] | |
| If i+2 < raw.Length | |
| c1 = raw[i+1..i+2] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| mkdir Payload | |
| mv $1.app Payload/ | |
| zip -r $1.ipa Payload | |
| rm -fR Paypload |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| draw2d.layout.connection.NewBezierConnectionRouter = draw2d.layout.connection.ManhattanConnectionRouter.extend({ | |
| NAME : "draw2d.layout.connection.NewBezierConnectionRouter", | |
| init : function() | |
| { | |
| this.cheapRouter = null; | |
| this.iteration = 5; | |
| }, | |
| route : function(conn) | |
| { |