├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .gitignore ├── README.md ├── cdrom.img └── .gitignore ├── config ├── SLUS_205.54.yaml ├── lib_symbol_addrs.txt └── symbol_addrs.txt ├── module ├── cdbios │ ├── cdbios_ee.c │ └── cdbios_ee.h ├── include │ ├── cdbios_ee.h │ ├── g_sound.h │ ├── jsifman.h │ ├── mts.h │ ├── nousbfs.h │ ├── sd_ee.h │ ├── zconf.h │ └── zlib.h ├── jsifman │ ├── jsifman.h │ ├── libmain.c │ └── rvman.c ├── lib │ └── .gitignore ├── loader │ ├── .gitignore │ ├── Makefile │ ├── pld.c │ └── pld.tbl ├── mts │ ├── Makefile │ ├── delay.c │ ├── event.c │ ├── exception.c │ ├── exception_in.s │ ├── mts.c │ ├── mts.h │ ├── mts_private.h │ └── stackcheck.c ├── nousbfs │ ├── .gitignore │ ├── Makefile │ ├── nousbfs.c │ ├── nousbfs.h │ └── nousbfs.tbl ├── sound │ ├── Makefile │ ├── g_sound.h │ ├── iop_main.c │ ├── sd_cli.c │ ├── sd_drv.c │ ├── sd_ee.c │ ├── sd_ee.h │ ├── sd_ext.h │ ├── sd_file.c │ ├── sd_incl.h │ ├── sd_ioset.c │ ├── sd_main.c │ ├── sd_mstr.c │ ├── sd_str.c │ ├── sd_str2.c │ ├── sd_str3.c │ ├── sd_sub1.c │ ├── sd_sub2.c │ ├── sd_wk.c │ ├── se_data │ │ └── dummy.txt │ └── se_tbl.c └── zlibdec │ ├── .editorconfig │ ├── Makefile │ ├── adler32.c │ ├── infblock.c │ ├── infblock.h │ ├── infcodes.c │ ├── infcodes.h │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inftrees.c │ ├── inftrees.h │ ├── infutil.c │ ├── infutil.h │ ├── readme.txt │ ├── zconf.h │ ├── zlib.h │ └── zutil.h ├── source ├── Makefile ├── game │ ├── Makefile │ ├── camera.c │ ├── camerad.c │ ├── caption.c │ ├── chara.c │ ├── control.c │ ├── cristream.c │ ├── discon.c │ ├── dumstream.c │ ├── game.h │ ├── gamed.c │ ├── homing.c │ ├── jimaku.c │ ├── loader.c │ ├── map.c │ ├── mapcnct.c │ ├── menupri.c │ ├── mtstream.c │ ├── object.c │ ├── script.c │ ├── sdstream.c │ ├── sejimaku.c │ ├── strctrl.c │ ├── target.c │ ├── vibrate.c │ └── xmenupri.c ├── include │ ├── chara.h │ ├── common.h │ ├── eecache.h │ ├── fmt_demo.h │ ├── fmt_hzx.h │ ├── fmt_lit.h │ ├── fmt_mdl.h │ ├── fmt_mot.h │ ├── fmt_tex.h │ ├── linkvar.h │ ├── mgs_defs.h │ ├── mgs_types.h │ └── strcode.h ├── lib │ └── .gitignore ├── main │ ├── iopload.c │ ├── iopload.h │ ├── main.c │ └── xmain.c ├── stage │ └── .gitignore ├── system │ ├── Makefile │ ├── libdg │ │ ├── Makefile │ │ └── libdg.h │ ├── libfs │ │ ├── .editorconfig │ │ ├── Makefile │ │ ├── datacnf_tag.h │ │ ├── file.cnf │ │ ├── libfs.h │ │ ├── select.c │ │ └── stream.h │ ├── libgcl │ │ ├── Makefile │ │ ├── gcl_init.c │ │ └── libgcl.h │ ├── libgv │ │ ├── Makefile │ │ ├── actor.c │ │ ├── cache.c │ │ ├── gvd.c │ │ ├── libgv.h │ │ ├── memlist.c │ │ ├── memlist.h │ │ ├── memory.c │ │ ├── message.c │ │ ├── pad.c │ │ ├── resident.c │ │ └── strcode.c │ ├── libhzx │ │ ├── Makefile │ │ ├── bind.c │ │ ├── debug.c │ │ ├── dynamic.c │ │ ├── hzxd.c │ │ ├── level.c │ │ ├── libhzx.h │ │ ├── loadhzx.c │ │ ├── navigate.c │ │ └── near.c │ ├── libma │ │ ├── Makefile │ │ └── libma.h │ ├── libmc │ │ ├── Makefile │ │ └── libmc.h │ ├── libmt │ │ ├── Makefile │ │ └── libmt.h │ ├── libutl │ │ ├── Makefile │ │ ├── libutl.h │ │ ├── objchange.c │ │ └── partchg.c │ └── misc │ │ ├── Makefile │ │ └── font.h └── user │ ├── Makefile │ ├── kano │ ├── Makefile │ ├── attachment │ │ ├── attachment.c │ │ ├── attachment2.c │ │ ├── attachment3.c │ │ ├── attachment3a.c │ │ ├── attachment4.c │ │ └── attachments.c │ ├── handcuff │ │ └── handcuff.c │ ├── npc_snake │ │ └── snake_weapon.c │ ├── raincoat │ │ └── dispcoat.c │ ├── rope │ │ ├── ropemain.c │ │ └── ropemain2.c │ └── waving_cloth │ │ └── waving_cloth.c │ ├── kira │ ├── 2D │ │ ├── sprite_dma.c │ │ └── xsprite_dma.c │ ├── Makefile │ ├── effect │ │ ├── cylinder │ │ │ └── cylinder.c │ │ └── floor │ │ │ └── floor.c │ ├── map │ │ └── map_3d.c │ └── radar │ │ ├── radar.c │ │ └── rdr_movie.c │ ├── korekado │ ├── Makefile │ ├── conv │ │ ├── chksling.c │ │ └── sling.c │ ├── enemy │ │ └── enemy.c │ └── gll │ │ ├── eyebeem.c │ │ ├── gl_light.c │ │ ├── gl_minilit.c │ │ ├── gll_achoo.c │ │ ├── gll_drop_shadow.c │ │ ├── gll_flour_sara.c │ │ ├── gllblur.c │ │ ├── gllpika.c │ │ ├── gllspread.c │ │ └── sonic.c │ ├── kunibe │ ├── Makefile │ └── effect │ │ ├── bathroom_pee.c │ │ ├── blade_flow.c │ │ ├── blade_spark.c │ │ ├── blade_spark2.c │ │ ├── blood_smoke.c │ │ ├── blood_smoke_inpact.c │ │ ├── body_fire.c │ │ ├── book_fire.c │ │ ├── bridge_smoke.c │ │ ├── c_box_fire.c │ │ ├── c_box_smoke.c │ │ ├── cypher_exp.c │ │ ├── cypher_light.c │ │ ├── cypher_plasma.c │ │ ├── cypher_rising_smoke.c │ │ ├── demo_dummypoint_blood.c │ │ ├── demo_plasma_color.c │ │ ├── demo_rising_smoke.c │ │ ├── demo_splash_blood.c │ │ ├── demo_sun.c │ │ ├── dogtag_flash.c │ │ ├── door_pannel_spark.c │ │ ├── emma_body_fire.c │ │ ├── exp_smoke.c │ │ ├── fatman_demo_scratch_smoke.c │ │ ├── fatman_scratch.c │ │ ├── fatman_scratch_smoke.c │ │ ├── fatman_scratch_spark.c │ │ ├── harrier_claster_spark.c │ │ ├── harrier_clasterunit_smoke.c │ │ ├── harrier_damage_smoke.c │ │ ├── harrier_flare.c │ │ ├── harrier_flare_smoke.c │ │ ├── harrier_flash.c │ │ ├── harrier_light.c │ │ ├── harrier_missile_fire.c │ │ ├── harrier_missile_fire2.c │ │ ├── harrier_missile_smoke.c │ │ ├── harrier_missile_smoke2.c │ │ ├── harrier_pod_smoke.c │ │ ├── harrier_stage_break.c │ │ ├── harrier_tank_break.c │ │ ├── harrier_vernier.c │ │ ├── harrier_vernier_smoke.c │ │ ├── harrier_vulcan_fire.c │ │ ├── harrier_wing_smoke.c │ │ ├── landing_smoke.c │ │ ├── light_spark.c │ │ ├── light_spark2.c │ │ ├── missile_exp.c │ │ ├── pee.c │ │ ├── point_dogtag_flash.c │ │ ├── point_fire.c │ │ ├── point_splash_blood.c │ │ ├── ray_blood_smoke.c │ │ ├── ray_fall_blood.c │ │ ├── rising_smoke.c │ │ ├── rising_smoke2.c │ │ ├── running_smoke.c │ │ ├── running_smoke2.c │ │ ├── solidas_dash_fire.c │ │ ├── solidus_blade_wind.c │ │ ├── solidus_dunk_smoke.c │ │ ├── solidus_energy_prim.c │ │ ├── solidus_mant_fire.c │ │ ├── solidus_missile_barn.c │ │ ├── solidus_missile_fire.c │ │ ├── solidus_missile_smoke.c │ │ ├── solidus_snakearm_flow.c │ │ ├── solidus_snakearm_plasma.c │ │ ├── sprt_plasma.c │ │ ├── sprt_plasma2.c │ │ ├── stage_fire.c │ │ ├── tng_stage_monitor.c │ │ ├── vamp_knife_aura.c │ │ └── wine.c │ ├── mode │ ├── Makefile │ ├── codec │ │ ├── c_ffocus.c │ │ ├── c_indemo.c │ │ ├── c_layout.c │ │ ├── c_nfocus.c │ │ ├── cdc_face.c │ │ ├── cdc_mind.c │ │ ├── cdc_movie.c │ │ ├── cdc_noise.c │ │ ├── cdc_vib.c │ │ ├── cdcobj.c │ │ ├── cjimaku.c │ │ ├── codec.c │ │ ├── codec.h │ │ ├── codeccap.c │ │ ├── codeccrt.c │ │ ├── codecmem.c │ │ ├── console.c │ │ ├── face_bug.c │ │ ├── interval_noise.c │ │ ├── memcall.c │ │ └── static_noise.c │ ├── demo │ │ ├── cam_act.c │ │ ├── demo.h │ │ ├── demod.c │ │ ├── eft_act.c │ │ └── obj_act.c │ ├── eq_menu │ │ ├── eq_menu.h │ │ ├── it_chng1.c │ │ ├── it_chng2.c │ │ ├── wp_chng1.c │ │ └── wp_chng2.c │ ├── menu │ │ ├── menu.h │ │ ├── menusub.c │ │ ├── pic_scn.c │ │ ├── prm_util.c │ │ ├── textscn.c │ │ ├── xmenusub.c │ │ ├── xpic_scn.c │ │ ├── xprm_util.c │ │ └── xtextscn.c │ ├── mobile │ │ ├── mob_panel.c │ │ ├── mobile.c │ │ └── mobile.h │ ├── node │ │ ├── node.c │ │ ├── node.h │ │ ├── node_bg.c │ │ ├── node_bg_chm.c │ │ ├── node_bg_fog.c │ │ ├── node_bg_genzi.c │ │ ├── node_bg_grd.c │ │ ├── node_bg_log.c │ │ ├── node_bg_nymap.c │ │ ├── node_bg_plmap.c │ │ ├── node_bg_ray.c │ │ ├── node_bg_scroll.c │ │ └── node_bg_wall.c │ └── phototerm │ │ ├── console.c │ │ ├── photo_disp.c │ │ ├── photo_panel.c │ │ ├── photo_puppet.c │ │ ├── photo_term.c │ │ └── phototerm.h │ ├── morita │ ├── Makefile │ ├── brk_b_gls │ │ └── brk_b_gls_ini.c │ ├── brk_btl │ │ ├── brk_btl_ini.c │ │ ├── brk_wine.c │ │ └── brk_winefall.c │ ├── brk_build │ │ ├── brk_build.c │ │ └── brk_build_pce.c │ ├── brk_com │ │ ├── brk_computer.c │ │ └── efct_bomb.c │ ├── brk_gls │ │ ├── brk_gls_ini.c │ │ └── brk_prim.c │ ├── brk_hng_lgt │ │ └── brk_hang_light.c │ ├── brk_ice │ │ └── brk_ice_ini.c │ ├── brk_lgt │ │ └── brk_light.c │ ├── brk_mgz │ │ ├── brk_mgz_act.c │ │ ├── brk_mgz_clb.c │ │ └── brk_mgz_ini.c │ ├── brk_mon │ │ └── efct_glass.c │ ├── brk_obj │ │ ├── brk_obj_ini.c │ │ ├── efct_kchp.c │ │ └── efct_salt.c │ ├── brk_pap │ │ └── brk_pap_ini.c │ ├── brk_plt │ │ └── brk_plt_ini.c │ ├── brk_pnl │ │ └── brk_vent.c │ ├── brk_pto │ │ └── brk_pto_ini.c │ ├── brk_rdl │ │ └── brk_rdl_ini.c │ ├── brk_sch │ │ └── brk_search.c │ ├── brk_speech │ │ └── brk_spc_ini.c │ ├── brk_spt │ │ ├── brk_spotlgt.c │ │ └── fade_lgt.c │ ├── brk_swg │ │ ├── brk_floor.c │ │ └── brk_swing.c │ ├── brk_tre │ │ └── brk_tre_ini.c │ ├── brk_tv │ │ └── brk_tv_ini.c │ ├── brk_utl │ │ └── brk_utl_ini.c │ ├── demo_arkms │ │ └── demo_connect.c │ ├── demo_bul │ │ └── demo_bullet.c │ ├── demo_emma │ │ └── emma_equip.c │ ├── demo_fort │ │ └── fort_equip.c │ ├── demo_meryl │ │ └── demo_meryl.c │ ├── emma │ │ └── effect │ │ │ └── emma_mir.c │ ├── fort │ │ ├── effect │ │ │ ├── efct_drop.c │ │ │ ├── efct_flow.c │ │ │ ├── efct_heatiron.c │ │ │ ├── efct_oilstain.c │ │ │ └── efct_wallscar.c │ │ ├── hang_lgt │ │ │ ├── fort_hang.c │ │ │ ├── fort_lgt.c │ │ │ └── fort_wall_lgt.c │ │ ├── hide │ │ │ ├── brk_fl_bwheel.c │ │ │ ├── brk_fl_frame.c │ │ │ ├── brk_fl_fwheel.c │ │ │ ├── brk_fl_lift.c │ │ │ ├── brk_gas_cap.c │ │ │ ├── brk_ironbox.c │ │ │ └── fort_obj_ini.c │ │ ├── misc │ │ │ └── fort_ceil.c │ │ └── weapon │ │ │ ├── fort_amo.c │ │ │ ├── fort_bul.c │ │ │ └── fort_lnr.c │ ├── orga │ │ ├── holo │ │ │ └── orga_hol_ini.c │ │ ├── misc │ │ │ ├── orga_har.c │ │ │ ├── orga_hid.c │ │ │ ├── orga_lgt.c │ │ │ ├── orga_lnz.c │ │ │ ├── orga_obj.c │ │ │ ├── orga_rai.c │ │ │ ├── orga_rpl.c │ │ │ └── orga_sph.c │ │ └── weapon │ │ │ ├── orga_amo.c │ │ │ ├── orga_bul.c │ │ │ ├── orga_sgr.c │ │ │ └── orga_usp.c │ ├── put_anm │ │ └── put_vanime.c │ ├── put_book │ │ ├── put_bok_act.c │ │ └── put_bok_ini.c │ ├── put_elv │ │ ├── elv_fence.c │ │ └── put_elev.c │ ├── put_flag │ │ └── put_flag.c │ ├── put_stanm │ │ └── put_stanime.c │ ├── shadow │ │ └── drop_shadow.c │ ├── splash │ │ └── splash.c │ └── wall_scar │ │ ├── glass_scar.c │ │ └── wall_scar.c │ ├── okajima │ ├── Makefile │ ├── demo_effect │ │ ├── camera_crush.c │ │ ├── common_smoke.c │ │ ├── d_blood1.c │ │ ├── d_blood2.c │ │ ├── d_contrast.c │ │ ├── d_fade_io.c │ │ ├── d_fade_io_prog.c │ │ ├── d_inter_poly.c │ │ ├── d_plasma_poly.c │ │ ├── d_rain_cm.c │ │ ├── d_splash_camera.c │ │ ├── d_splash_fall.c │ │ ├── d_splash_floor.c │ │ ├── d_splash_parts.c │ │ ├── d_splash_parts_slow.c │ │ ├── d_thunder_parts.c │ │ ├── d_vol_shadow.c │ │ └── dive_splash.c │ ├── effect │ │ ├── achuu_parts.c │ │ ├── bb_dan.c │ │ ├── blood2.c │ │ ├── blood_bio.c │ │ ├── blood_cm.c │ │ ├── blood_m9.c │ │ ├── blood_part1.c │ │ ├── blood_part2.c │ │ ├── blood_sp.c │ │ ├── blood_wl.c │ │ ├── blur.c │ │ ├── blur_timer.c │ │ ├── body_sdw.c │ │ ├── body_sph.c │ │ ├── bomb_chaff.c │ │ ├── bomb_gas.c │ │ ├── bomb_kasu.c │ │ ├── c_light.c │ │ ├── c_light_spot.c │ │ ├── cb_hole_light.c │ │ ├── cb_splash.c │ │ ├── crush_dust.c │ │ ├── extinguisher.c │ │ ├── extinguisher_jet.c │ │ ├── flush_screen.c │ │ ├── flying_smoke.c │ │ ├── flying_smoke2.c │ │ ├── foot_print.c │ │ ├── ft_splsh.c │ │ ├── george_bonbori.c │ │ ├── hako.c │ │ ├── line_sph.c │ │ ├── mdl_p_am.c │ │ ├── objs_fall.c │ │ ├── projector_light.c │ │ ├── rain.c │ │ ├── rain_cm.c │ │ ├── rain_gas_pers.c │ │ ├── rain_gas_pers_demo.c │ │ ├── rain_parts.c │ │ ├── rain_slow.c │ │ ├── ripple.c │ │ ├── rot_y_object.c │ │ ├── saa_smoke.c │ │ ├── set_t_dr.c │ │ ├── set_t_fc.c │ │ ├── set_t_fw.c │ │ ├── set_t_plant.c │ │ ├── set_tex.c │ │ ├── shield_e.c │ │ ├── snake_breath_cm.c │ │ ├── splash_rot.c │ │ ├── steam_cm.c │ │ ├── steam_smoke.c │ │ ├── twin_dr.c │ │ ├── weapon_sph.c │ │ └── weapon_sph2.c │ ├── effect2 │ │ ├── blood_strip_parts.c │ │ ├── blow_line.c │ │ ├── bubble_cm.c │ │ ├── bubble_line.c │ │ ├── bubble_many.c │ │ ├── bubble_motion.c │ │ ├── drop_body_splush.c │ │ ├── drop_body_splush_prog.c │ │ ├── dust_area.c │ │ ├── dust_cm.c │ │ ├── dynamic_flow.c │ │ ├── floor_light_man.c │ │ ├── line_brust.c │ │ ├── liner_gun_plasma.c │ │ ├── liner_gun_plasma_flush.c │ │ ├── liner_plasma_small.c │ │ ├── rain_cm_con.c │ │ ├── ripple_bubble.c │ │ ├── ripple_man.c │ │ ├── short_spark.c │ │ ├── side_flare.c │ │ ├── slit_light2.c │ │ ├── sonic_wave.c │ │ ├── splush_man.c │ │ ├── splush_surface_gravity_man.c │ │ ├── splush_surface_man.c │ │ ├── splush_tidal_parts.c │ │ ├── splush_tidal_parts2.c │ │ ├── splush_tidal_parts4.c │ │ ├── spot_blur_line.c │ │ ├── water_front_prim.c │ │ └── water_wind.c │ ├── effect3 │ │ ├── bomb_bubble.c │ │ ├── bomb_sphere.c │ │ ├── bubble_bullet.c │ │ ├── death_dive_splush.c │ │ ├── dive_flow.c │ │ ├── door_lamp.c │ │ ├── dynamic_scar.c │ │ ├── elevator_lamp.c │ │ ├── explosion_parts.c │ │ ├── fluid_flow_parts.c │ │ ├── flying_smoke_slow.c │ │ ├── gas2_pers_fast.c │ │ ├── gas_in_water.c │ │ ├── gas_pers_fast.c │ │ ├── hitech_face_blood.c │ │ ├── kirari_cm.c │ │ ├── kirari_water_cm.c │ │ ├── kirari_water_sun.c │ │ ├── kirari_water_sun2.c │ │ ├── mountain_splush.c │ │ ├── mountain_splush_spread.c │ │ ├── node_lamp.c │ │ ├── poly_hola_upper.c │ │ ├── pool_water_stable.c │ │ ├── ray_missile_shower.c │ │ ├── ripple_strip.c │ │ ├── smoke2_strip.c │ │ ├── smoke_in_water.c │ │ ├── smoke_mitsukoshi.c │ │ ├── smoke_strip.c │ │ ├── splush_rsprt.c │ │ ├── splush_rsprt_hari.c │ │ ├── vamp_drop_splash.c │ │ ├── vamp_hola.c │ │ ├── vamp_knife_fix.c │ │ ├── vapor.c │ │ ├── w_mine_lamp.c │ │ ├── water_surface.c │ │ └── water_surface2.c │ ├── etc │ │ └── item_box.c │ ├── t_effect │ │ ├── afterimage.c │ │ ├── blood.c │ │ ├── breath.c │ │ ├── chim_smo.c │ │ ├── inf_cam.c │ │ ├── shield_smoke.c │ │ └── spark.c │ ├── t_fig_raven │ │ └── fig_raven_init.c │ ├── t_flashlight │ │ └── fl_light_ini.c │ ├── t_irs │ │ ├── irs_break.c │ │ └── trap_c4.c │ └── t_prev │ │ ├── bonbori_red.c │ │ ├── bonbori_yw.c │ │ ├── brooklyn.c │ │ ├── fog_wall.c │ │ ├── manhat3d.c │ │ ├── sky_column.c │ │ ├── sky_prev.c │ │ └── thund_flash.c │ ├── okuta │ ├── Makefile │ ├── effect │ │ ├── bloodfloor.c │ │ ├── bloodweep.c │ │ ├── charaspread.c │ │ ├── concripple.c │ │ ├── drowbubble.c │ │ ├── electrofield.c │ │ ├── forttear.c │ │ ├── hexagonal.c │ │ ├── kmdanna.c │ │ ├── kmdnncam.c │ │ ├── kmdnnfloor.c │ │ ├── maoparticle.c │ │ ├── oneripple.c │ │ ├── plasmaevade.c │ │ ├── powspplit.c │ │ ├── ventilatorlit.c │ │ ├── waterbubble.c │ │ ├── waterdropmng.c │ │ ├── waterdust.c │ │ ├── waterfall.c │ │ ├── waterlinefall.c │ │ ├── waterripple.c │ │ ├── waterspread.c │ │ └── wormcorpse.c │ └── kamome │ │ ├── kmmng.c │ │ └── kmtest.c │ ├── readme.txt │ ├── satoyoshi │ ├── Makefile │ ├── effect │ │ ├── sara_umi.c │ │ └── umi_ex.c │ └── harrier │ │ ├── har_claster.c │ │ ├── har_demoeffect.c │ │ ├── har_main.c │ │ ├── har_missile.c │ │ ├── har_mpod.c │ │ ├── har_pirots.c │ │ ├── har_sdmng.c │ │ └── har_vulc.c │ ├── shibata │ ├── Makefile │ ├── anime │ │ └── anime.c │ ├── demo │ │ ├── blood_water_demo.c │ │ ├── cigarette.c │ │ ├── cinema_scr.c │ │ ├── debris_tex.c │ │ ├── depend_arms.c │ │ ├── depend_arms2.c │ │ ├── depend_arms3.c │ │ ├── depend_arms4.c │ │ ├── lens_flare.c │ │ ├── orn_face.c │ │ ├── ray_colwater.c │ │ ├── ray_console.c │ │ ├── ray_monoeye.c │ │ ├── ray_monoeye_demo.c │ │ ├── ray_waterpollute.c │ │ ├── scr_conblur.c │ │ ├── scr_drop_demo.c │ │ ├── scr_goggles_demo.c │ │ ├── scr_water_demo.c │ │ ├── traffic.c │ │ └── traffic_flush.c │ ├── effect │ │ ├── blade_eft.c │ │ ├── blood_water.c │ │ ├── cam_lamp.c │ │ ├── flow_paper.c │ │ ├── gnrl_poly.c │ │ ├── gnrl_sprt.c │ │ ├── gnrl_sprt2.c │ │ ├── lens_flr_gm.c │ │ ├── line_smoke.c │ │ ├── plant_sun.c │ │ ├── puddle.c │ │ ├── ray_eye.c │ │ ├── ray_laser.c │ │ ├── scr_bubble.c │ │ ├── scr_crack.c │ │ ├── scr_drop.c │ │ ├── scr_goggles.c │ │ ├── scr_hex.c │ │ ├── scr_shimmer.c │ │ ├── scr_sight.c │ │ ├── scr_trans.c │ │ ├── scr_water.c │ │ ├── scr_waterfilm.c │ │ ├── sky_util.c │ │ ├── wc_flush.c │ │ └── win_rain.c │ ├── etc │ │ └── gm_over.c │ ├── headmark │ │ ├── ab_mind.c │ │ ├── discovery.c │ │ └── sleep.c │ ├── radio_break │ │ ├── ts_min_fog.c │ │ └── ts_spark.c │ ├── sea_slater │ │ ├── cam_slater.c │ │ └── trample_slater.c │ ├── t_flour │ │ ├── flour.c │ │ ├── flour_Fall.c │ │ ├── flour_gas3.c │ │ ├── flour_moku.c │ │ ├── flour_sara.c │ │ ├── flour_splay.c │ │ └── flour_spread.c │ ├── t_headmark │ │ ├── piyori.c │ │ └── zzz.c │ ├── util │ │ └── ts_util.c │ └── vamp │ │ └── vamp.c │ ├── sigeno │ ├── Makefile │ ├── demo │ │ ├── demo_eye.c │ │ └── play_ap.c │ ├── effect │ │ ├── 3dtex.c │ │ ├── breakbody.c │ │ ├── breakobj.c │ │ ├── breakobj2.c │ │ ├── grav.c │ │ ├── handanim.c │ │ ├── homsight2.c │ │ ├── katana_ap.c │ │ ├── shuchu_line.c │ │ ├── vr_lens.c │ │ └── warptag.c │ ├── equip │ │ ├── sig_grd.c │ │ └── tng_ktn.c │ └── vr │ │ ├── fadeobj.c │ │ ├── inc_trg.c │ │ ├── posprint.c │ │ ├── vr_goal.c │ │ └── vr_wall.c │ ├── skoba │ ├── Makefile │ ├── bullet │ │ ├── bul_nkt.c │ │ ├── bul_stg.c │ │ └── bullet.c │ ├── equip │ │ └── uniform.c │ ├── test │ │ ├── Senser.c │ │ ├── c4_eff.c │ │ ├── c4_ice.c │ │ └── irs_lamp.c │ ├── weapon │ │ ├── clay_eff.c │ │ ├── clay_line.c │ │ ├── grenade.c │ │ ├── nkt.c │ │ ├── stg.c │ │ └── usp.c │ └── weapon_old │ │ ├── clay_bomb_smoke.c │ │ ├── connect_smoke.c │ │ ├── connect_smoke_skoba.c │ │ ├── crtrg.c │ │ ├── crtrg_ft.c │ │ ├── gunsmoke_single.c │ │ ├── gunsmoke_single2.c │ │ ├── mazzleflash.c │ │ ├── mazzleflash2.c │ │ ├── mazzleflash_sub.c │ │ ├── mazzleflash_sub2.c │ │ ├── smoke.c │ │ ├── smoke2.c │ │ ├── stg_blur.c │ │ ├── stg_fall_parts.c │ │ ├── stg_smoke_back.c │ │ ├── stg_smoke_front.c │ │ ├── stg_spark.c │ │ └── sub_mazzle.c │ ├── sonoyama │ ├── Makefile │ ├── etc │ │ ├── belt.c │ │ ├── demo_snakearm.c │ │ └── sunglasses.c │ ├── plugin │ │ ├── elevator.c │ │ ├── locker2.c │ │ └── wt_door.c │ ├── raiden │ │ ├── rai_equip.c │ │ ├── rai_shadow_hair.c │ │ └── raiden.c │ └── solidus │ │ └── init_sol.c │ ├── takabe │ ├── Makefile │ ├── effect1 │ │ ├── actblur.c │ │ ├── crosfade.c │ │ ├── f_focus.c │ │ ├── frm_skip.c │ │ ├── ir_mode.c │ │ ├── mini_scn.c │ │ ├── mono_scn.c │ │ ├── n_focus.c │ │ ├── raster.c │ │ └── smk_blur.c │ ├── object │ │ ├── f_bridge.c │ │ ├── mirror.c │ │ ├── shdwdraw.c │ │ ├── shdwdrw2.c │ │ └── spotdraw.c │ └── pdray │ │ ├── ef_brmsl.c │ │ ├── ef_clud2.c │ │ ├── ef_laser.c │ │ ├── ef_muzle.c │ │ ├── ef_shck2.c │ │ ├── ef_smk2.c │ │ ├── ef_smk3.c │ │ ├── ef_smoke.c │ │ ├── ef_spark.c │ │ ├── ef_spk2.c │ │ ├── ef_spl2.c │ │ ├── ef_spl3.c │ │ ├── ef_splsh.c │ │ ├── pdr_fenc.c │ │ ├── pdr_stage.c │ │ ├── pdray.c │ │ ├── r_server.c │ │ ├── smkreact.c │ │ ├── wp_bul.c │ │ └── wp_misle.c │ ├── yamashita │ ├── 2D │ │ └── vr_map_3d.c │ ├── Makefile │ ├── marker │ │ ├── floor_marker.c │ │ └── wall_marker.c │ ├── outline │ │ └── outline.c │ ├── panel │ │ └── floor_panel.c │ ├── pitfall_flr │ │ └── pitfall_flr.c │ ├── vr_sky │ │ └── vr_sky.c │ └── vr_wall_scar │ │ └── vr_wall_scar.c │ └── yano │ ├── Makefile │ └── effect │ ├── duct_sight.c │ ├── glass_mist2.c │ ├── goruruko.c │ ├── kan_splash.c │ ├── kan_splash2.c │ ├── kan_splash3.c │ ├── vr_clear_eft2.c │ └── vr_gmover.c └── tools ├── .editorconfig ├── idcheck ├── .gitignore ├── Makefile ├── idcheck.c ├── notes.txt └── wildcard.c ├── include ├── cmbswap.h ├── cmdefs.h ├── eprintf.h └── jtckdint.h ├── ipktool ├── .gitignore ├── Makefile ├── ipktool.c ├── myfsutil.c ├── myfsutil.h ├── xmalloc.c └── xmalloc.h └── strcode ├── .gitignore ├── Makefile ├── main.c ├── strcode.c └── strcode.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mgs2 2 | Decompilation of the 2001 game METAL GEAR SOLID 2: SONS OF LIBERTY 3 | -------------------------------------------------------------------------------- /cdrom.img/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/cdrom.img/.gitignore -------------------------------------------------------------------------------- /config/SLUS_205.54.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/config/SLUS_205.54.yaml -------------------------------------------------------------------------------- /config/lib_symbol_addrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/config/lib_symbol_addrs.txt -------------------------------------------------------------------------------- /config/symbol_addrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/config/symbol_addrs.txt -------------------------------------------------------------------------------- /module/cdbios/cdbios_ee.c: -------------------------------------------------------------------------------- 1 | #include "cdbios_ee.h" 2 | -------------------------------------------------------------------------------- /module/cdbios/cdbios_ee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/cdbios/cdbios_ee.h -------------------------------------------------------------------------------- /module/include/cdbios_ee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/include/cdbios_ee.h -------------------------------------------------------------------------------- /module/include/g_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/include/g_sound.h -------------------------------------------------------------------------------- /module/include/jsifman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/include/jsifman.h -------------------------------------------------------------------------------- /module/include/mts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/include/mts.h -------------------------------------------------------------------------------- /module/include/nousbfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/include/nousbfs.h -------------------------------------------------------------------------------- /module/include/sd_ee.h: -------------------------------------------------------------------------------- 1 | /* redirection */ 2 | #include "../sound/sd_ee.h" 3 | -------------------------------------------------------------------------------- /module/include/zconf.h: -------------------------------------------------------------------------------- 1 | /* redirection */ 2 | #include "../zlibdec/zconf.h" 3 | -------------------------------------------------------------------------------- /module/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/include/zlib.h -------------------------------------------------------------------------------- /module/jsifman/jsifman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/jsifman/jsifman.h -------------------------------------------------------------------------------- /module/jsifman/libmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/jsifman/libmain.c -------------------------------------------------------------------------------- /module/jsifman/rvman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/jsifman/rvman.c -------------------------------------------------------------------------------- /module/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/lib/.gitignore -------------------------------------------------------------------------------- /module/loader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/loader/.gitignore -------------------------------------------------------------------------------- /module/loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/loader/Makefile -------------------------------------------------------------------------------- /module/loader/pld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/loader/pld.c -------------------------------------------------------------------------------- /module/loader/pld.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/loader/pld.tbl -------------------------------------------------------------------------------- /module/mts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/mts/Makefile -------------------------------------------------------------------------------- /module/mts/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/mts/delay.c -------------------------------------------------------------------------------- /module/mts/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/mts/event.c -------------------------------------------------------------------------------- /module/mts/exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/mts/exception.c -------------------------------------------------------------------------------- /module/mts/exception_in.s: -------------------------------------------------------------------------------- 1 | /* RFU (Reserved for Future Use) */ 2 | -------------------------------------------------------------------------------- /module/mts/mts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/mts/mts.c -------------------------------------------------------------------------------- /module/mts/mts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/mts/mts.h -------------------------------------------------------------------------------- /module/mts/mts_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/mts/mts_private.h -------------------------------------------------------------------------------- /module/mts/stackcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/mts/stackcheck.c -------------------------------------------------------------------------------- /module/nousbfs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/nousbfs/.gitignore -------------------------------------------------------------------------------- /module/nousbfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/nousbfs/Makefile -------------------------------------------------------------------------------- /module/nousbfs/nousbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/nousbfs/nousbfs.c -------------------------------------------------------------------------------- /module/nousbfs/nousbfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/nousbfs/nousbfs.h -------------------------------------------------------------------------------- /module/nousbfs/nousbfs.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/nousbfs/nousbfs.tbl -------------------------------------------------------------------------------- /module/sound/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/sound/Makefile -------------------------------------------------------------------------------- /module/sound/g_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/sound/g_sound.h -------------------------------------------------------------------------------- /module/sound/iop_main.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/sound/sd_cli.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/sound/sd_drv.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/sound/sd_ee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/sound/sd_ee.c -------------------------------------------------------------------------------- /module/sound/sd_ee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/sound/sd_ee.h -------------------------------------------------------------------------------- /module/sound/sd_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/sound/sd_ext.h -------------------------------------------------------------------------------- /module/sound/sd_file.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/sound/sd_incl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/sound/sd_incl.h -------------------------------------------------------------------------------- /module/sound/sd_ioset.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/sound/sd_main.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/sound/sd_mstr.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/sound/sd_str.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/sound/sd_str2.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/sound/sd_str3.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/sound/sd_sub1.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/sound/sd_sub2.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/sound/sd_wk.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/sound/se_data/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/sound/se_tbl.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/zlibdec/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/.editorconfig -------------------------------------------------------------------------------- /module/zlibdec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/Makefile -------------------------------------------------------------------------------- /module/zlibdec/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/adler32.c -------------------------------------------------------------------------------- /module/zlibdec/infblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/infblock.c -------------------------------------------------------------------------------- /module/zlibdec/infblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/infblock.h -------------------------------------------------------------------------------- /module/zlibdec/infcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/infcodes.c -------------------------------------------------------------------------------- /module/zlibdec/infcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/infcodes.h -------------------------------------------------------------------------------- /module/zlibdec/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/inffast.c -------------------------------------------------------------------------------- /module/zlibdec/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/inffast.h -------------------------------------------------------------------------------- /module/zlibdec/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/inffixed.h -------------------------------------------------------------------------------- /module/zlibdec/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/inflate.c -------------------------------------------------------------------------------- /module/zlibdec/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/inftrees.c -------------------------------------------------------------------------------- /module/zlibdec/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/inftrees.h -------------------------------------------------------------------------------- /module/zlibdec/infutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/infutil.c -------------------------------------------------------------------------------- /module/zlibdec/infutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/infutil.h -------------------------------------------------------------------------------- /module/zlibdec/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/readme.txt -------------------------------------------------------------------------------- /module/zlibdec/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/zconf.h -------------------------------------------------------------------------------- /module/zlibdec/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/zlib.h -------------------------------------------------------------------------------- /module/zlibdec/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/module/zlibdec/zutil.h -------------------------------------------------------------------------------- /source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/Makefile -------------------------------------------------------------------------------- /source/game/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/game/Makefile -------------------------------------------------------------------------------- /source/game/camera.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/camerad.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/caption.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/chara.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/control.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/cristream.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/discon.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/dumstream.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/game/game.h -------------------------------------------------------------------------------- /source/game/gamed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/game/gamed.c -------------------------------------------------------------------------------- /source/game/homing.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/jimaku.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/game/loader.c -------------------------------------------------------------------------------- /source/game/map.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/mapcnct.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/menupri.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/mtstream.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/object.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/game/script.c -------------------------------------------------------------------------------- /source/game/sdstream.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/sejimaku.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/strctrl.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/target.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/vibrate.c: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /source/game/xmenupri.c: -------------------------------------------------------------------------------- 1 | // menupri.c for Xbox/DirectX 2 | 3 | #include "game.h" 4 | -------------------------------------------------------------------------------- /source/include/chara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/include/chara.h -------------------------------------------------------------------------------- /source/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/include/common.h -------------------------------------------------------------------------------- /source/include/eecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/include/eecache.h -------------------------------------------------------------------------------- /source/include/fmt_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/include/fmt_demo.h -------------------------------------------------------------------------------- /source/include/fmt_hzx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/include/fmt_hzx.h -------------------------------------------------------------------------------- /source/include/fmt_lit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/include/fmt_lit.h -------------------------------------------------------------------------------- /source/include/fmt_mdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/include/fmt_mdl.h -------------------------------------------------------------------------------- /source/include/fmt_mot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/include/fmt_mot.h -------------------------------------------------------------------------------- /source/include/fmt_tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/include/fmt_tex.h -------------------------------------------------------------------------------- /source/include/linkvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/include/linkvar.h -------------------------------------------------------------------------------- /source/include/mgs_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/include/mgs_defs.h -------------------------------------------------------------------------------- /source/include/mgs_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/include/mgs_types.h -------------------------------------------------------------------------------- /source/include/strcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/include/strcode.h -------------------------------------------------------------------------------- /source/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/lib/.gitignore -------------------------------------------------------------------------------- /source/main/iopload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/main/iopload.c -------------------------------------------------------------------------------- /source/main/iopload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/main/iopload.h -------------------------------------------------------------------------------- /source/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/main/main.c -------------------------------------------------------------------------------- /source/main/xmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/main/xmain.c -------------------------------------------------------------------------------- /source/stage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/stage/.gitignore -------------------------------------------------------------------------------- /source/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/Makefile -------------------------------------------------------------------------------- /source/system/libdg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libdg/Makefile -------------------------------------------------------------------------------- /source/system/libdg/libdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libdg/libdg.h -------------------------------------------------------------------------------- /source/system/libfs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libfs/.editorconfig -------------------------------------------------------------------------------- /source/system/libfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libfs/Makefile -------------------------------------------------------------------------------- /source/system/libfs/datacnf_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libfs/datacnf_tag.h -------------------------------------------------------------------------------- /source/system/libfs/file.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libfs/file.cnf -------------------------------------------------------------------------------- /source/system/libfs/libfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libfs/libfs.h -------------------------------------------------------------------------------- /source/system/libfs/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libfs/select.c -------------------------------------------------------------------------------- /source/system/libfs/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libfs/stream.h -------------------------------------------------------------------------------- /source/system/libgcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgcl/Makefile -------------------------------------------------------------------------------- /source/system/libgcl/gcl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgcl/gcl_init.c -------------------------------------------------------------------------------- /source/system/libgcl/libgcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgcl/libgcl.h -------------------------------------------------------------------------------- /source/system/libgv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgv/Makefile -------------------------------------------------------------------------------- /source/system/libgv/actor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgv/actor.c -------------------------------------------------------------------------------- /source/system/libgv/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgv/cache.c -------------------------------------------------------------------------------- /source/system/libgv/gvd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgv/gvd.c -------------------------------------------------------------------------------- /source/system/libgv/libgv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgv/libgv.h -------------------------------------------------------------------------------- /source/system/libgv/memlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgv/memlist.c -------------------------------------------------------------------------------- /source/system/libgv/memlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgv/memlist.h -------------------------------------------------------------------------------- /source/system/libgv/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgv/memory.c -------------------------------------------------------------------------------- /source/system/libgv/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgv/message.c -------------------------------------------------------------------------------- /source/system/libgv/pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgv/pad.c -------------------------------------------------------------------------------- /source/system/libgv/resident.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgv/resident.c -------------------------------------------------------------------------------- /source/system/libgv/strcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libgv/strcode.c -------------------------------------------------------------------------------- /source/system/libhzx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libhzx/Makefile -------------------------------------------------------------------------------- /source/system/libhzx/bind.c: -------------------------------------------------------------------------------- 1 | #include "libhzx.h" 2 | -------------------------------------------------------------------------------- /source/system/libhzx/debug.c: -------------------------------------------------------------------------------- 1 | #include "libhzx.h" 2 | -------------------------------------------------------------------------------- /source/system/libhzx/dynamic.c: -------------------------------------------------------------------------------- 1 | #include "libhzx.h" 2 | -------------------------------------------------------------------------------- /source/system/libhzx/hzxd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libhzx/hzxd.c -------------------------------------------------------------------------------- /source/system/libhzx/level.c: -------------------------------------------------------------------------------- 1 | #include "libhzx.h" 2 | -------------------------------------------------------------------------------- /source/system/libhzx/libhzx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libhzx/libhzx.h -------------------------------------------------------------------------------- /source/system/libhzx/loadhzx.c: -------------------------------------------------------------------------------- 1 | #include "libhzx.h" 2 | -------------------------------------------------------------------------------- /source/system/libhzx/navigate.c: -------------------------------------------------------------------------------- 1 | #include "libhzx.h" 2 | -------------------------------------------------------------------------------- /source/system/libhzx/near.c: -------------------------------------------------------------------------------- 1 | #include "libhzx.h" 2 | -------------------------------------------------------------------------------- /source/system/libma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libma/Makefile -------------------------------------------------------------------------------- /source/system/libma/libma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libma/libma.h -------------------------------------------------------------------------------- /source/system/libmc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libmc/Makefile -------------------------------------------------------------------------------- /source/system/libmc/libmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libmc/libmc.h -------------------------------------------------------------------------------- /source/system/libmt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libmt/Makefile -------------------------------------------------------------------------------- /source/system/libmt/libmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libmt/libmt.h -------------------------------------------------------------------------------- /source/system/libutl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libutl/Makefile -------------------------------------------------------------------------------- /source/system/libutl/libutl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/libutl/libutl.h -------------------------------------------------------------------------------- /source/system/libutl/objchange.c: -------------------------------------------------------------------------------- 1 | #include "libutl.h" 2 | -------------------------------------------------------------------------------- /source/system/libutl/partchg.c: -------------------------------------------------------------------------------- 1 | #include "libutl.h" 2 | -------------------------------------------------------------------------------- /source/system/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/misc/Makefile -------------------------------------------------------------------------------- /source/system/misc/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/system/misc/font.h -------------------------------------------------------------------------------- /source/user/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/Makefile -------------------------------------------------------------------------------- /source/user/kano/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/kano/Makefile -------------------------------------------------------------------------------- /source/user/kano/attachment/attachment.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kano/attachment/attachment2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kano/attachment/attachment3.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kano/attachment/attachment3a.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kano/attachment/attachment4.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kano/attachment/attachments.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kano/handcuff/handcuff.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kano/npc_snake/snake_weapon.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kano/raincoat/dispcoat.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kano/rope/ropemain.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kano/rope/ropemain2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kano/waving_cloth/waving_cloth.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kira/2D/sprite_dma.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kira/2D/xsprite_dma.c: -------------------------------------------------------------------------------- 1 | // sprite_dma.c for Xbox/DirectX 2 | 3 | #include "common.h" 4 | -------------------------------------------------------------------------------- /source/user/kira/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/kira/Makefile -------------------------------------------------------------------------------- /source/user/kira/effect/cylinder/cylinder.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kira/effect/floor/floor.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kira/map/map_3d.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kira/radar/radar.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kira/radar/rdr_movie.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/korekado/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/korekado/Makefile -------------------------------------------------------------------------------- /source/user/korekado/conv/chksling.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/korekado/conv/sling.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/korekado/enemy/enemy.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/korekado/gll/eyebeem.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/korekado/gll/gl_light.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/korekado/gll/gl_minilit.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/korekado/gll/gll_achoo.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/korekado/gll/gll_drop_shadow.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/korekado/gll/gll_flour_sara.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/korekado/gll/gllblur.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/korekado/gll/gllpika.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/korekado/gll/gllspread.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/korekado/gll/sonic.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/kunibe/Makefile -------------------------------------------------------------------------------- /source/user/kunibe/effect/bathroom_pee.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/blade_flow.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/blade_spark.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/blade_spark2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/blood_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/blood_smoke_inpact.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/body_fire.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/book_fire.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/bridge_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/c_box_fire.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/c_box_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/cypher_exp.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/cypher_light.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/cypher_plasma.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/cypher_rising_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/demo_dummypoint_blood.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/demo_plasma_color.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/demo_rising_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/demo_splash_blood.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/demo_sun.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/dogtag_flash.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/door_pannel_spark.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/emma_body_fire.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/exp_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/fatman_demo_scratch_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/fatman_scratch.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/fatman_scratch_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/fatman_scratch_spark.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_claster_spark.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_clasterunit_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_damage_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_flare.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_flare_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_flash.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_light.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_missile_fire.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_missile_fire2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_missile_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_missile_smoke2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_pod_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_stage_break.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_tank_break.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_vernier.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_vernier_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_vulcan_fire.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/harrier_wing_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/landing_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/light_spark.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/light_spark2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/missile_exp.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/pee.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/point_dogtag_flash.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/point_fire.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/point_splash_blood.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/ray_blood_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/ray_fall_blood.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/rising_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/rising_smoke2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/running_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/running_smoke2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/solidas_dash_fire.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/solidus_blade_wind.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/solidus_dunk_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/solidus_energy_prim.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/solidus_mant_fire.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/solidus_missile_barn.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/solidus_missile_fire.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/solidus_missile_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/solidus_snakearm_flow.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/solidus_snakearm_plasma.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/sprt_plasma.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/sprt_plasma2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/stage_fire.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/tng_stage_monitor.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/vamp_knife_aura.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/kunibe/effect/wine.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/mode/Makefile -------------------------------------------------------------------------------- /source/user/mode/codec/c_ffocus.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/c_indemo.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/c_layout.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/c_nfocus.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/cdc_face.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/cdc_mind.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/cdc_movie.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/cdc_noise.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/cdc_vib.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/cdcobj.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/cjimaku.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/codec.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/mode/codec/codec.h -------------------------------------------------------------------------------- /source/user/mode/codec/codeccap.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/codeccrt.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/codecmem.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/console.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/face_bug.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/interval_noise.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/memcall.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/codec/static_noise.c: -------------------------------------------------------------------------------- 1 | #include "codec.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/demo/cam_act.c: -------------------------------------------------------------------------------- 1 | #include "demo.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/demo/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/mode/demo/demo.h -------------------------------------------------------------------------------- /source/user/mode/demo/demod.c: -------------------------------------------------------------------------------- 1 | #include "demo.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/demo/eft_act.c: -------------------------------------------------------------------------------- 1 | #include "demo.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/demo/obj_act.c: -------------------------------------------------------------------------------- 1 | #include "demo.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/eq_menu/eq_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/mode/eq_menu/eq_menu.h -------------------------------------------------------------------------------- /source/user/mode/eq_menu/it_chng1.c: -------------------------------------------------------------------------------- 1 | #include "eq_menu.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/eq_menu/it_chng2.c: -------------------------------------------------------------------------------- 1 | #include "eq_menu.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/eq_menu/wp_chng1.c: -------------------------------------------------------------------------------- 1 | #include "eq_menu.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/eq_menu/wp_chng2.c: -------------------------------------------------------------------------------- 1 | #include "eq_menu.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/menu/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/mode/menu/menu.h -------------------------------------------------------------------------------- /source/user/mode/menu/menusub.c: -------------------------------------------------------------------------------- 1 | #include "menu.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/menu/pic_scn.c: -------------------------------------------------------------------------------- 1 | #include "menu.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/menu/prm_util.c: -------------------------------------------------------------------------------- 1 | #include "menu.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/menu/textscn.c: -------------------------------------------------------------------------------- 1 | #include "menu.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/menu/xmenusub.c: -------------------------------------------------------------------------------- 1 | // menusub.c for Xbox/DirectX 2 | 3 | #include "menu.h" 4 | -------------------------------------------------------------------------------- /source/user/mode/menu/xpic_scn.c: -------------------------------------------------------------------------------- 1 | // pic_scn.c for Xbox/DirectX 2 | 3 | #include "menu.h" 4 | -------------------------------------------------------------------------------- /source/user/mode/menu/xprm_util.c: -------------------------------------------------------------------------------- 1 | // prm_util.c for Xbox/DirectX 2 | 3 | #include "menu.h" 4 | -------------------------------------------------------------------------------- /source/user/mode/menu/xtextscn.c: -------------------------------------------------------------------------------- 1 | // textscn.c for Xbox/DirectX 2 | 3 | #include "menu.h" 4 | -------------------------------------------------------------------------------- /source/user/mode/mobile/mob_panel.c: -------------------------------------------------------------------------------- 1 | #include "mobile.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/mobile/mobile.c: -------------------------------------------------------------------------------- 1 | #include "mobile.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/mobile/mobile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/mode/mobile/mobile.h -------------------------------------------------------------------------------- /source/user/mode/node/node.c: -------------------------------------------------------------------------------- 1 | #include "node.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/node/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/mode/node/node.h -------------------------------------------------------------------------------- /source/user/mode/node/node_bg.c: -------------------------------------------------------------------------------- 1 | #include "node.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/node/node_bg_chm.c: -------------------------------------------------------------------------------- 1 | #include "node.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/node/node_bg_fog.c: -------------------------------------------------------------------------------- 1 | #include "node.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/node/node_bg_genzi.c: -------------------------------------------------------------------------------- 1 | #include "node.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/node/node_bg_grd.c: -------------------------------------------------------------------------------- 1 | #include "node.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/node/node_bg_log.c: -------------------------------------------------------------------------------- 1 | #include "node.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/node/node_bg_nymap.c: -------------------------------------------------------------------------------- 1 | #include "node.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/node/node_bg_plmap.c: -------------------------------------------------------------------------------- 1 | #include "node.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/node/node_bg_ray.c: -------------------------------------------------------------------------------- 1 | #include "node.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/node/node_bg_scroll.c: -------------------------------------------------------------------------------- 1 | #include "node.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/node/node_bg_wall.c: -------------------------------------------------------------------------------- 1 | #include "node.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/phototerm/console.c: -------------------------------------------------------------------------------- 1 | #include "phototerm.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/phototerm/photo_disp.c: -------------------------------------------------------------------------------- 1 | #include "phototerm.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/phototerm/photo_panel.c: -------------------------------------------------------------------------------- 1 | #include "phototerm.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/phototerm/photo_puppet.c: -------------------------------------------------------------------------------- 1 | #include "phototerm.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/phototerm/photo_term.c: -------------------------------------------------------------------------------- 1 | #include "phototerm.h" 2 | -------------------------------------------------------------------------------- /source/user/mode/phototerm/phototerm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/mode/phototerm/phototerm.h -------------------------------------------------------------------------------- /source/user/morita/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/morita/Makefile -------------------------------------------------------------------------------- /source/user/morita/brk_b_gls/brk_b_gls_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_btl/brk_btl_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_btl/brk_wine.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_btl/brk_winefall.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_build/brk_build.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_build/brk_build_pce.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_com/brk_computer.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_com/efct_bomb.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_gls/brk_gls_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_gls/brk_prim.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_hng_lgt/brk_hang_light.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_ice/brk_ice_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_lgt/brk_light.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_mgz/brk_mgz_act.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_mgz/brk_mgz_clb.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_mgz/brk_mgz_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_mon/efct_glass.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_obj/brk_obj_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_obj/efct_kchp.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_obj/efct_salt.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_pap/brk_pap_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_plt/brk_plt_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_pnl/brk_vent.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_pto/brk_pto_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_rdl/brk_rdl_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_sch/brk_search.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_speech/brk_spc_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_spt/brk_spotlgt.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_spt/fade_lgt.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_swg/brk_floor.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_swg/brk_swing.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_tre/brk_tre_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_tv/brk_tv_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/brk_utl/brk_utl_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/demo_arkms/demo_connect.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/demo_bul/demo_bullet.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/demo_emma/emma_equip.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/demo_fort/fort_equip.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/demo_meryl/demo_meryl.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/emma/effect/emma_mir.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/effect/efct_drop.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/effect/efct_flow.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/effect/efct_heatiron.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/effect/efct_oilstain.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/effect/efct_wallscar.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/hang_lgt/fort_hang.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/hang_lgt/fort_lgt.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/hang_lgt/fort_wall_lgt.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/hide/brk_fl_bwheel.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/hide/brk_fl_frame.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/hide/brk_fl_fwheel.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/hide/brk_fl_lift.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/hide/brk_gas_cap.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/hide/brk_ironbox.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/hide/fort_obj_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/misc/fort_ceil.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/weapon/fort_amo.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/weapon/fort_bul.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/fort/weapon/fort_lnr.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/orga/holo/orga_hol_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/orga/misc/orga_har.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/orga/misc/orga_hid.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/orga/misc/orga_lgt.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/orga/misc/orga_lnz.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/orga/misc/orga_obj.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/orga/misc/orga_rai.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/orga/misc/orga_rpl.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/orga/misc/orga_sph.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/orga/weapon/orga_amo.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/orga/weapon/orga_bul.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/orga/weapon/orga_sgr.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/orga/weapon/orga_usp.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/put_anm/put_vanime.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/put_book/put_bok_act.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/put_book/put_bok_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/put_elv/elv_fence.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/put_elv/put_elev.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/put_flag/put_flag.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/put_stanm/put_stanime.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/shadow/drop_shadow.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/splash/splash.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/wall_scar/glass_scar.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/morita/wall_scar/wall_scar.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/okajima/Makefile -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/camera_crush.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/common_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_blood1.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_blood2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_contrast.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_fade_io.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_fade_io_prog.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_inter_poly.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_plasma_poly.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_rain_cm.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_splash_camera.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_splash_fall.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_splash_floor.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_splash_parts.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_splash_parts_slow.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_thunder_parts.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/d_vol_shadow.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/demo_effect/dive_splash.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/achuu_parts.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/bb_dan.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/blood2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/blood_bio.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/blood_cm.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/blood_m9.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/blood_part1.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/blood_part2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/blood_sp.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/blood_wl.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/blur.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/blur_timer.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/body_sdw.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/body_sph.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/bomb_chaff.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/bomb_gas.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/bomb_kasu.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/c_light.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/c_light_spot.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/cb_hole_light.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/cb_splash.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/crush_dust.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/extinguisher.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/extinguisher_jet.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/flush_screen.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/flying_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/flying_smoke2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/foot_print.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/ft_splsh.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/george_bonbori.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/hako.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/line_sph.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/mdl_p_am.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/objs_fall.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/projector_light.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/rain.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/rain_cm.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/rain_gas_pers.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/rain_gas_pers_demo.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/rain_parts.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/rain_slow.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/ripple.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/rot_y_object.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/saa_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/set_t_dr.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/set_t_fc.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/set_t_fw.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/set_t_plant.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/set_tex.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/shield_e.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/snake_breath_cm.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/splash_rot.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/steam_cm.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/steam_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/twin_dr.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/weapon_sph.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect/weapon_sph2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/blood_strip_parts.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/blow_line.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/bubble_cm.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/bubble_line.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/bubble_many.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/bubble_motion.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/drop_body_splush.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/drop_body_splush_prog.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/dust_area.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/dust_cm.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/dynamic_flow.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/floor_light_man.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/line_brust.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/liner_gun_plasma.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/liner_gun_plasma_flush.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/liner_plasma_small.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/rain_cm_con.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/ripple_bubble.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/ripple_man.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/short_spark.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/side_flare.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/slit_light2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/sonic_wave.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/splush_man.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/splush_surface_gravity_man.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/splush_surface_man.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/splush_tidal_parts.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/splush_tidal_parts2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/splush_tidal_parts4.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/spot_blur_line.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/water_front_prim.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect2/water_wind.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/bomb_bubble.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/bomb_sphere.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/bubble_bullet.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/death_dive_splush.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/dive_flow.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/door_lamp.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/dynamic_scar.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/elevator_lamp.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/explosion_parts.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/fluid_flow_parts.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/flying_smoke_slow.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/gas2_pers_fast.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/gas_in_water.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/gas_pers_fast.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/hitech_face_blood.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/kirari_cm.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/kirari_water_cm.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/kirari_water_sun.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/kirari_water_sun2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/mountain_splush.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/mountain_splush_spread.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/node_lamp.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/poly_hola_upper.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/pool_water_stable.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/ray_missile_shower.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/ripple_strip.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/smoke2_strip.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/smoke_in_water.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/smoke_mitsukoshi.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/smoke_strip.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/splush_rsprt.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/splush_rsprt_hari.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/vamp_drop_splash.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/vamp_hola.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/vamp_knife_fix.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/vapor.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/w_mine_lamp.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/water_surface.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/effect3/water_surface2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/etc/item_box.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_effect/afterimage.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_effect/blood.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_effect/breath.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_effect/chim_smo.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_effect/inf_cam.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_effect/shield_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_effect/spark.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_fig_raven/fig_raven_init.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_flashlight/fl_light_ini.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_irs/irs_break.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_irs/trap_c4.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_prev/bonbori_red.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_prev/bonbori_yw.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_prev/brooklyn.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_prev/fog_wall.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_prev/manhat3d.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_prev/sky_column.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_prev/sky_prev.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okajima/t_prev/thund_flash.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/okuta/Makefile -------------------------------------------------------------------------------- /source/user/okuta/effect/bloodfloor.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/bloodweep.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/charaspread.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/concripple.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/drowbubble.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/electrofield.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/forttear.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/hexagonal.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/kmdanna.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/kmdnncam.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/kmdnnfloor.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/maoparticle.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/oneripple.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/plasmaevade.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/powspplit.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/ventilatorlit.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/waterbubble.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/waterdropmng.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/waterdust.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/waterfall.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/waterlinefall.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/waterripple.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/waterspread.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/effect/wormcorpse.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/kamome/kmmng.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/okuta/kamome/kmtest.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/readme.txt -------------------------------------------------------------------------------- /source/user/satoyoshi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/satoyoshi/Makefile -------------------------------------------------------------------------------- /source/user/satoyoshi/effect/sara_umi.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/satoyoshi/effect/umi_ex.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/satoyoshi/harrier/har_claster.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/satoyoshi/harrier/har_demoeffect.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/satoyoshi/harrier/har_main.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/satoyoshi/harrier/har_missile.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/satoyoshi/harrier/har_mpod.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/satoyoshi/harrier/har_pirots.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/satoyoshi/harrier/har_sdmng.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/satoyoshi/harrier/har_vulc.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/shibata/Makefile -------------------------------------------------------------------------------- /source/user/shibata/anime/anime.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/blood_water_demo.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/cigarette.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/cinema_scr.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/debris_tex.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/depend_arms.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/depend_arms2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/depend_arms3.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/depend_arms4.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/lens_flare.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/orn_face.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/ray_colwater.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/ray_console.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/ray_monoeye.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/ray_monoeye_demo.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/ray_waterpollute.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/scr_conblur.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/scr_drop_demo.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/scr_goggles_demo.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/scr_water_demo.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/traffic.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/demo/traffic_flush.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/blade_eft.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/blood_water.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/cam_lamp.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/flow_paper.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/gnrl_poly.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/gnrl_sprt.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/gnrl_sprt2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/lens_flr_gm.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/line_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/plant_sun.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/puddle.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/ray_eye.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/ray_laser.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/scr_bubble.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/scr_crack.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/scr_drop.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/scr_goggles.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/scr_hex.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/scr_shimmer.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/scr_sight.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/scr_trans.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/scr_water.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/scr_waterfilm.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/sky_util.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/wc_flush.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/effect/win_rain.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/etc/gm_over.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/headmark/ab_mind.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/headmark/discovery.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/headmark/sleep.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/radio_break/ts_min_fog.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/radio_break/ts_spark.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/sea_slater/cam_slater.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/sea_slater/trample_slater.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/t_flour/flour.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/t_flour/flour_Fall.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/t_flour/flour_gas3.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/t_flour/flour_moku.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/t_flour/flour_sara.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/t_flour/flour_splay.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/t_flour/flour_spread.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/t_headmark/piyori.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/t_headmark/zzz.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/shibata/util/ts_util.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Tsunehiko Shibata's Utils 3 | */ 4 | #include "common.h" 5 | -------------------------------------------------------------------------------- /source/user/shibata/vamp/vamp.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/sigeno/Makefile -------------------------------------------------------------------------------- /source/user/sigeno/demo/demo_eye.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/demo/play_ap.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/effect/3dtex.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/effect/breakbody.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/effect/breakobj.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/effect/breakobj2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/effect/grav.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/effect/handanim.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/effect/homsight2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/effect/katana_ap.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/effect/shuchu_line.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/effect/vr_lens.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/effect/warptag.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/equip/sig_grd.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/equip/tng_ktn.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/vr/fadeobj.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/vr/inc_trg.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/vr/posprint.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/vr/vr_goal.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sigeno/vr/vr_wall.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/skoba/Makefile -------------------------------------------------------------------------------- /source/user/skoba/bullet/bul_nkt.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/bullet/bul_stg.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/bullet/bullet.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/equip/uniform.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/test/Senser.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/test/c4_eff.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/test/c4_ice.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/test/irs_lamp.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon/clay_eff.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon/clay_line.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon/grenade.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon/nkt.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon/stg.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon/usp.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/clay_bomb_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/connect_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/connect_smoke_skoba.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/crtrg.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/crtrg_ft.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/gunsmoke_single.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/gunsmoke_single2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/mazzleflash.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/mazzleflash2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/mazzleflash_sub.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/mazzleflash_sub2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/smoke2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/stg_blur.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/stg_fall_parts.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/stg_smoke_back.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/stg_smoke_front.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/stg_spark.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/skoba/weapon_old/sub_mazzle.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sonoyama/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/sonoyama/Makefile -------------------------------------------------------------------------------- /source/user/sonoyama/etc/belt.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sonoyama/etc/demo_snakearm.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sonoyama/etc/sunglasses.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sonoyama/plugin/elevator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sonoyama/plugin/locker2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sonoyama/plugin/wt_door.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sonoyama/raiden/rai_equip.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sonoyama/raiden/rai_shadow_hair.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sonoyama/raiden/raiden.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/sonoyama/solidus/init_sol.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/takabe/Makefile -------------------------------------------------------------------------------- /source/user/takabe/effect1/actblur.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/effect1/crosfade.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/effect1/f_focus.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/effect1/frm_skip.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/effect1/ir_mode.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/effect1/mini_scn.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/effect1/mono_scn.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/effect1/n_focus.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/effect1/raster.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/effect1/smk_blur.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/object/f_bridge.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/object/mirror.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/object/shdwdraw.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/object/shdwdrw2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/object/spotdraw.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/ef_brmsl.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/ef_clud2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/ef_laser.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/ef_muzle.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/ef_shck2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/ef_smk2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/ef_smk3.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/ef_smoke.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/ef_spark.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/ef_spk2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/ef_spl2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/ef_spl3.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/ef_splsh.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/pdr_fenc.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/pdr_stage.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/pdray.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/r_server.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/smkreact.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/wp_bul.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/takabe/pdray/wp_misle.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yamashita/2D/vr_map_3d.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yamashita/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/yamashita/Makefile -------------------------------------------------------------------------------- /source/user/yamashita/marker/floor_marker.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yamashita/marker/wall_marker.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yamashita/outline/outline.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yamashita/panel/floor_panel.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yamashita/pitfall_flr/pitfall_flr.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yamashita/vr_sky/vr_sky.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yamashita/vr_wall_scar/vr_wall_scar.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yano/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/source/user/yano/Makefile -------------------------------------------------------------------------------- /source/user/yano/effect/duct_sight.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yano/effect/glass_mist2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yano/effect/goruruko.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yano/effect/kan_splash.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yano/effect/kan_splash2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yano/effect/kan_splash3.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yano/effect/vr_clear_eft2.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /source/user/yano/effect/vr_gmover.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /tools/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/.editorconfig -------------------------------------------------------------------------------- /tools/idcheck/.gitignore: -------------------------------------------------------------------------------- 1 | idcheck 2 | -------------------------------------------------------------------------------- /tools/idcheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/idcheck/Makefile -------------------------------------------------------------------------------- /tools/idcheck/idcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/idcheck/idcheck.c -------------------------------------------------------------------------------- /tools/idcheck/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/idcheck/notes.txt -------------------------------------------------------------------------------- /tools/idcheck/wildcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/idcheck/wildcard.c -------------------------------------------------------------------------------- /tools/include/cmbswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/include/cmbswap.h -------------------------------------------------------------------------------- /tools/include/cmdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/include/cmdefs.h -------------------------------------------------------------------------------- /tools/include/eprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/include/eprintf.h -------------------------------------------------------------------------------- /tools/include/jtckdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/include/jtckdint.h -------------------------------------------------------------------------------- /tools/ipktool/.gitignore: -------------------------------------------------------------------------------- 1 | ipktool 2 | -------------------------------------------------------------------------------- /tools/ipktool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/ipktool/Makefile -------------------------------------------------------------------------------- /tools/ipktool/ipktool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/ipktool/ipktool.c -------------------------------------------------------------------------------- /tools/ipktool/myfsutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/ipktool/myfsutil.c -------------------------------------------------------------------------------- /tools/ipktool/myfsutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/ipktool/myfsutil.h -------------------------------------------------------------------------------- /tools/ipktool/xmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/ipktool/xmalloc.c -------------------------------------------------------------------------------- /tools/ipktool/xmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/ipktool/xmalloc.h -------------------------------------------------------------------------------- /tools/strcode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/strcode/.gitignore -------------------------------------------------------------------------------- /tools/strcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/strcode/Makefile -------------------------------------------------------------------------------- /tools/strcode/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/strcode/main.c -------------------------------------------------------------------------------- /tools/strcode/strcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/strcode/strcode.c -------------------------------------------------------------------------------- /tools/strcode/strcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GirianSeed/mgs2/HEAD/tools/strcode/strcode.h --------------------------------------------------------------------------------