This repository has been archived by the owner on Jan 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PiConsole.m
149 lines (77 loc) · 4.07 KB
/
PiConsole.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
//
// commandLinetools.m
// Swifty
//
// Created by Pouya Kary on 11/26/14.
// Copyright (c) 2014 Arendelle Language. All rights reserved.
//
#import <Foundation/Foundation.h>
#include <stdlib.h>
/* ──────────────────────────────────────────────────────────────────────────────────────────────────── *
* :::::::::::::::::::::::::::::::::: P I C O N S O L E T O O L S ::::::::::::::::::::::::::::::::: *
* ──────────────────────────────────────────────────────────────────────────────────────────────────── */
//
// ─── READLINE ───────────────────────────────────────────────────────────────────────────────────────
//
NSString* PiConsoleReadLine( ) {
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NSMutableData * data = [ NSMutableData data ];
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
do {
// • • • • •
char c = getchar( );
// • • • • •
if ( [ [ NSCharacterSet newlineCharacterSet ] characterIsMember: ( unichar )c ] ) {
break;
} //end of if ( [ [ NSCharacterSet newlineCharacterSet ] characterIsMember: ( unichar )c ] )
// • • • • •
[ data appendBytes:&c length: sizeof( char ) ];
} while ( true );
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
return [ [ NSString alloc ] initWithData: data encoding: NSUTF8StringEncoding ];
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
} //end of PiConsoleReadLine( )
//
// ─── CONSOLE COMMENTS ───────────────────────────────────────────────────────────────────────────────
//
// • • • • •
void PiConsoleClean( ) {
system( "clear" );
}
// • • • • •
void PiConsoleReset( ) {
printf( "\033[0m" );
}
// • • • • •
void PiConsoleBold( ) {
printf( "\033[1m" );
}
// • • • • •
void PiConsoleRed( ) {
printf( "\x1B[31m" );
}
// • • • • •
void PiConsoleGreen( ) {
printf( "\x1B[32m" );
}
// • • • • •
void PiConsoleYellow( ) {
printf( "\x1B[33m" );
}
// • • • • •
void PiConsoleBlue( ) {
printf( "\x1B[34m" );
}
// • • • • •
void PiConsoleMagenta( ) {
printf( "\x1B[35m" );
}
// • • • • •
void PiConsoleCayan( ) {
printf( "\x1B[36m" );
}
// • • • • •
void PiConsoleWhite( ) {
printf( "\x1B[37m" );
}
// ────────────────────────────────────────────────────────────────────────────────────────────────────