I fixed the most irritating and time consuming bug in my game today
[icode]button.setStyle(button.getStyle());[/icode]
(VisUI in a nutshell)
I fixed the most irritating and time consuming bug in my game today
[icode]button.setStyle(button.getStyle());[/icode]
(VisUI in a nutshell)
It is the first day of my internship in London (Btw.: Iâm from Germany and during my apprenticeship I had the chance to âwinâ a 6-week internship abroad)
Today Iâm trying aaagain to get back to java gaming . I hope to have something to show in the coming weeks.
I started learning Norwegian for no particular reason.
Jeg snakker Norsk.
Made an up-to-date video of AMEN $ Mother Function - live-coded Java lambda. Done two gigs in the last few weeks with this too - one in Oxford, one in Athens.
SgE9POc5BdA
this looks very satisfying.
matches the gradient style pretty good.
I have almost finished my arcade cabinet. I made sure the buttons were all mapped correctly, and finally put the speakers in. Now the last 2 steps are to get a raspberry pi, and some LED lights to illuminate the inside of the cabinet.
Hey lads
Today I finished my game for my 1st year games programming assignment. Itâs not java, but maybe you want to check it out anyway heheh
Cool, what language is it in?
In the past couple of weeks Iâve been doing lots of work with the engine. Making it faster and more usable.
You can see the cool settings screen at the start of the video that i made lol.
I implemented entity pathing using a linked list of path nodes that the entity follows.
8G5bweaBSnk
C++ (it was required, among other things, we used c++ with the sfml library) :point:
Added a simple shockwave shader to my pet project
RytJ537BlPo
Got tons of work done on the map editor!
Probably one of the more mundane yet extremely rewarding programming tasks ive undertaken.
I made a new sleep transition for Robot Farm today.
It looks super simple but it took me like all day to get the scrolling right lol. I had to get a lot of help from theagentd.
Took a peek into Assembly with NASM and wrote a factorial program.
; The equivalent C code is as follows:
; ~~~
; long fact(long n)
; {
; return (n == 0) ? 1 : n * fact(n - 1);
; }
; ~~~
fact:
cmp dword ebx, 0 ; n == 0
je .yes
.no:
push ebx ; save ebx in stack
sub ebx, dword 1 ; sub 1 from ebx. (n - 1)
call fact ; call fact recursively
pop ebx ; get back the ebx from stack
imul eax, ebx ; eax *= ebx; eax == fact(n - 1)
ret
.yes:
mov eax, dword 1 ; store 1 in eax to return it
ret
Complete program can be found at https://gist.github.com/sriharshachilakapati/70049a778e12d8edd9c7acf6c2d44c33