我在电脑俱乐部和孩子一起探索Sphero。我们开发简单的orbBasic程序,做有趣的事情。我确实放弃了移动设备上的orbBasic应用程序,因为它几乎无法用于编程(微小的字体,难以在移动设备上编辑)。我找到了Sphero Mac SDK,现在我们使用它的orbBasicLoader从Mac上传程序。但是当我们的程序变大时,我们发现它们不会以这种方式加载到Sphero,可能是因为它们必须拆分为两块Sphero内存,Mac SDK无法正确处理。它由设备上的orbBasic app处理,因此可以。
如何使用Mac SDK将大型orbBasic程序上传到Sphero?
这是我们的一个程序 - 用于Sphero的Snake游戏,用orbBasic编写,遇到了这个问题。在4 * 4米的空间(球体在程序开始时位于空间的中心)有隐藏的“食物”,你的目标是通过以“亮度”为指导将Sphero靠近“食物”来“吃食物”。你吃了5'食物后结束游戏。双击Sphero重启。
10 locate 0,0
20 E=0
30 X=200-rnd 400
40 Y=200-rnd 400
50 C=xpos-X
60 D=ypos-Y
70 L=sqrt(C*C+D*D)
80 if L>200 then L=200
90 O=255-L
100 RGB O,O,O
110 if L<10 then goto 140
120 delay 100
130 goto 50
140 E=E+1
150 RGB 0,E*51,0
160 delay 1000
170 if E<5 then goto 30
180 LEDC 1+rnd 7
190 delay 100
200 if dshake > 0 then goto 10
210 goto 180
答案 0 :(得分:1)
我明白了!
您必须手动将片段上传到Sphero,片段不应接近253的限制。片段200的最大大小效果很好。很简单。
以下是从程序中分离片段的代码:
-(void)setProgram:(NSString *)inProgram {
NSArray *lines = [inProgram componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]];
if( fragments != nil ) {
[fragments release];
}
char buffer[1024]= {0};
fragments = [[NSMutableArray alloc] initWithCapacity:2];
NSMutableData *data = [[NSMutableData alloc] init];
for( int i = 0; i<[lines count]; i++ ) {
NSString *currentLine = [lines objectAtIndex:i];
//strip comments - lines starting with apostrophe
if( [currentLine hasPrefix:@"'"] ) continue;
if( (data.length + [currentLine lengthOfBytesUsingEncoding:NSASCIIStringEncoding]) > 200 ) {
[fragments addObject:data];
[data release];
data = [[NSMutableData alloc] init];
}
if( [currentLine getCString:buffer maxLength:253 encoding:NSASCIIStringEncoding] ) {
[data appendBytes:buffer length:strlen(buffer)];
[data appendBytes:"\r" length:1];
}
}
[fragments addObject:data];
[data release];
}
这是发送代码:
每次从Sphero收到响应成功后,必须调用函数,直到加载设置为YES。 如果您尝试一次发送所有片段 - 将返回响应代码-2并且程序不会加载。
-(void)loadToSphero {
if( loaded == YES ) {
[self abort];
[self erase];
curFragment = 0;
}
if( curFragment < [fragments count] ) {
RKOrbBasicAppendFragmentCommand *appendCmd = [[RKOrbBasicAppendFragmentCommand alloc] initWithStorageType:RKOrbBasicStorageTypeTemporary fragment:[fragments objectAtIndex:curFragment]];
[appendCmd sendCommand];
[appendCmd release];
curFragment++;
}
else {
loaded = YES;
}
}
这是其他程序命令:
-(void)execute {
if( loaded == YES ) {
RKOrbBasicExecuteCommand *execCmd = [[RKOrbBasicExecuteCommand alloc] initWithStorageArea:RKOrbBasicStorageTypeTemporary startLine:10];
[execCmd sendCommand];
[execCmd release];
}
}
-(void)erase {
RKOrbBasicEraseStorageCommand *eraseCmd = [[RKOrbBasicEraseStorageCommand alloc] initWithStorageType:RKOrbBasicStorageTypeTemporary];
[eraseCmd sendCommand];
[eraseCmd release];
loaded=NO;
}
-(void)abort {
RKOrbBasicAbortCommand *abortCmd = [[RKOrbBasicAbortCommand alloc] init];
[abortCmd sendCommand];
[abortCmd release];
}