Merge branch 'pr/456'
This commit is contained in:
		
							
								
								
									
										32
									
								
								src/studio.c
									
									
									
									
									
								
							
							
						
						
									
										32
									
								
								src/studio.c
									
									
									
									
									
								
							@@ -373,21 +373,16 @@ void str2buf(const char* str, s32 size, void* buf, bool flip)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void removeWhiteSpaces(char* str)
 | 
			
		||||
static void removeWhiteSpaces(char* str)
 | 
			
		||||
{
 | 
			
		||||
        int i = 0;
 | 
			
		||||
        int len = strlen(str);
 | 
			
		||||
	s32 i = 0;
 | 
			
		||||
	s32 len = strlen(str);
 | 
			
		||||
 | 
			
		||||
        for (int j = 0; j < len; j++) {
 | 
			
		||||
                if (!isspace(str[j])) {
 | 
			
		||||
                        str[i] = str[j];
 | 
			
		||||
                        i++;
 | 
			
		||||
                }
 | 
			
		||||
        }
 | 
			
		||||
	for (s32 j = 0; j < len; j++)
 | 
			
		||||
		if(!SDL_isspace(str[j]))
 | 
			
		||||
			str[i++] = str[j];
 | 
			
		||||
 | 
			
		||||
        if (i < len - 1) {
 | 
			
		||||
                str[i] = '\0';
 | 
			
		||||
        }
 | 
			
		||||
	str[i] = '\0';
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
bool fromClipboard(void* data, s32 size, bool flip, bool remove_white_spaces)
 | 
			
		||||
@@ -400,9 +395,8 @@ bool fromClipboard(void* data, s32 size, bool flip, bool remove_white_spaces)
 | 
			
		||||
 | 
			
		||||
			if(clipboard)
 | 
			
		||||
			{
 | 
			
		||||
                                if (remove_white_spaces)
 | 
			
		||||
                                        removeWhiteSpaces(clipboard);
 | 
			
		||||
                            
 | 
			
		||||
				if (remove_white_spaces)
 | 
			
		||||
					removeWhiteSpaces(clipboard);
 | 
			
		||||
							
 | 
			
		||||
				bool valid = strlen(clipboard) == size * 2;
 | 
			
		||||
 | 
			
		||||
@@ -802,7 +796,7 @@ void setStudioMode(EditorMode mode)
 | 
			
		||||
		EditorMode prev = studio.mode;
 | 
			
		||||
 | 
			
		||||
		if(prev == TIC_RUN_MODE)
 | 
			
		||||
		 	studio.tic->api.pause(studio.tic);
 | 
			
		||||
			studio.tic->api.pause(studio.tic);
 | 
			
		||||
 | 
			
		||||
		if(mode != TIC_RUN_MODE)
 | 
			
		||||
			studio.tic->api.reset(studio.tic);
 | 
			
		||||
@@ -838,8 +832,8 @@ void setStudioMode(EditorMode mode)
 | 
			
		||||
		else if ((prev == TIC_MENU_MODE || prev == TIC_SURF_MODE) && studio.mode != TIC_RUN_MODE)
 | 
			
		||||
			enableScreenTextInput();
 | 
			
		||||
 | 
			
		||||
        if(SDL_HasScreenKeyboardSupport() &&
 | 
			
		||||
            (studio.mode == TIC_RUN_MODE || studio.mode == TIC_SURF_MODE || studio.mode == TIC_MENU_MODE))
 | 
			
		||||
		if(SDL_HasScreenKeyboardSupport() &&
 | 
			
		||||
			(studio.mode == TIC_RUN_MODE || studio.mode == TIC_SURF_MODE || studio.mode == TIC_MENU_MODE))
 | 
			
		||||
			SDL_StopTextInput();
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
@@ -1998,7 +1992,7 @@ static void blitTexture()
 | 
			
		||||
 | 
			
		||||
		SDL_Rect srcRect = {Left, Top, TIC80_WIDTH, TIC80_HEIGHT};
 | 
			
		||||
 | 
			
		||||
        SDL_RenderCopy(studio.renderer, studio.texture, &srcRect, &rect);
 | 
			
		||||
		SDL_RenderCopy(studio.renderer, studio.texture, &srcRect, &rect);
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -154,7 +154,6 @@ void exitStudio();
 | 
			
		||||
u32 unzip(u8** dest, const u8* source, size_t size);
 | 
			
		||||
 | 
			
		||||
void str2buf(const char* str, s32 size, void* buf, bool flip);
 | 
			
		||||
void removeWhiteSpaces(char* str);
 | 
			
		||||
void toClipboard(const void* data, s32 size, bool flip);
 | 
			
		||||
bool fromClipboard(void* data, s32 size, bool flip, bool remove_white_spaces);
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user